PaymentOptionsModel constructor Null safety

PaymentOptionsModel(
  1. {int? id,
  2. String? code,
  3. String? title,
  4. double? additionalFees,
  5. bool? hasCashLimit,
  6. dynamic cashLimit,
  7. dynamic cashLimitMsg,
  8. String? image,
  9. String? currencySymbol}
)

Implementation

PaymentOptionsModel({
  this.id,
  this.code,
  this.title,
  this.additionalFees,
  this.hasCashLimit,
  this.cashLimit,
  this.cashLimitMsg,
  this.image,
  this.currencySymbol,
});