PaymentPlan constructor

PaymentPlan({
  1. PaymentAmount? amount,
  2. PaymentPlanRepeat? repeat,
  3. DateTime? scheduled,
})

Implementation

PaymentPlan({
  this.amount,
  this.repeat,
  this.scheduled,
});