CryptoPaymentDialog constructor

const CryptoPaymentDialog({
  1. Key? key,
  2. required bool isDialog,
  3. required String cryptoPrice,
  4. required String usdPrice,
  5. required String currency,
  6. required String wallet,
  7. required String icon,
  8. String? network,
  9. required String type,
  10. required String amountType,
  11. void onTap()?,
  12. void onChangeMethod()?,
  13. required int timeLimit,
})

Implementation

const CryptoPaymentDialog({
  super.key,
  required this.isDialog,
  required this.cryptoPrice,
  required this.usdPrice,
  required this.currency,
  required this.wallet,
  required this.icon,
  this.network,
  required this.type,
  required this.amountType,
  this.onTap,
  this.onChangeMethod,
  required this.timeLimit,
});