CopaymentDto constructor

CopaymentDto({
  1. int? regimeType,
  2. int? from,
  3. int? to,
  4. String? feeAmount,
})

Returns a new CopaymentDto instance.

Implementation

CopaymentDto({
  this.regimeType,
  this.from,
  this.to,
  this.feeAmount,
});