MFRecurringPayment constructor

MFRecurringPayment({
  1. String? recurringId,
  2. String? recurringStatus,
  3. String? creationDate,
  4. int? recurringValue,
  5. String? recurringType,
  6. int? intervalDays,
  7. int? executedTimes,
  8. String? lastPayDate,
  9. String? nextPayDate,
  10. bool? isActive,
  11. List<MFRecurringInvoice>? recurringInvoices,
})

Implementation

MFRecurringPayment(
    {this.recurringId,
    this.recurringStatus,
    this.creationDate,
    this.recurringValue,
    this.recurringType,
    this.intervalDays,
    this.executedTimes,
    this.lastPayDate,
    this.nextPayDate,
    this.isActive,
    this.recurringInvoices});