PaymentMethod constructor

PaymentMethod({
  1. String? id,
  2. String? type,
  3. String? name,
  4. String? currency,
  5. bool? primaryBuy,
  6. bool? primarySell,
  7. bool? instantBuy,
  8. bool? instantSell,
  9. DateTime? createdAt,
  10. DateTime? updatedAt,
  11. String? resource,
  12. String? resourcePath,
  13. PaymentMethodLimits? limits,
  14. bool? allowBuy,
  15. bool? allowSell,
  16. bool? allowDeposit,
  17. bool? allowWithdraw,
  18. PaymentMethodFiatAccount? fiatAccounts,
  19. bool? verified,
  20. PaymentMethodPickerData? pickerData,
  21. int? holdBusinessDays,
  22. int? holdDays,
})

Implementation

PaymentMethod({
  this.id,
  this.type,
  this.name,
  this.currency,
  this.primaryBuy,
  this.primarySell,
  this.instantBuy,
  this.instantSell,
  this.createdAt,
  this.updatedAt,
  this.resource,
  this.resourcePath,
  this.limits,
  this.allowBuy,
  this.allowSell,
  this.allowDeposit,
  this.allowWithdraw,
  this.fiatAccounts,
  this.verified,
  this.pickerData,
  this.holdBusinessDays,
  this.holdDays,
});