CurrencyDetails constructor

CurrencyDetails({
  1. String? type,
  2. String? symbol,
  3. int? networkConfirmations,
  4. int? sortOrder,
  5. String? cryptoAddressLink,
  6. String? cryptoTransactionLink,
  7. List<String>? pushPaymentMethods,
  8. List<String>? groupTypes,
  9. String? displayName,
  10. int? processingTimeSeconds,
  11. double? minWithdrawalAmount,
})

Implementation

CurrencyDetails({
  this.type,
  this.symbol,
  this.networkConfirmations,
  this.sortOrder,
  this.cryptoAddressLink,
  this.cryptoTransactionLink,
  this.pushPaymentMethods,
  this.groupTypes,
  this.displayName,
  this.processingTimeSeconds,
  this.minWithdrawalAmount,
});