PaymentMethod constructor

PaymentMethod(
  1. dynamic id,
  2. dynamic createdAt,
  3. dynamic updatedAt,
  4. dynamic objectType,
  5. dynamic mode,
  6. String? bankName,
  7. String? brand,
  8. String? country,
  9. DateTime? disabledAt,
  10. int? expMonth,
  11. int? expYear,
  12. String? last4,
  13. String? name,
  14. bool? isVerified
)

Implementation

PaymentMethod(
  id,
  createdAt,
  updatedAt,
  objectType,
  mode,
  this.bankName,
  this.brand,
  this.country,
  this.disabledAt,
  this.expMonth,
  this.expYear,
  this.last4,
  this.name,
  this.isVerified,
) : super(id, createdAt, updatedAt, objectType, mode);