BasePayment constructor
BasePayment({
- PaymentAmount? amount,
- List<
PaymentPlan> plans = const [], - Map<
String, dynamic> custom = const {}, - UnplannedPayment? unplanned,
Implementation
BasePayment(
{this.amount,
this.plans = const [],
this.custom = const {},
this.unplanned})
: assert(amount != null || plans.isNotEmpty);