Input$PriceCreditInput constructor

Input$PriceCreditInput({
  1. String? amount,
  2. int? periodValue,
  3. Enum$RecurrenceType? periodCycle,
})

Implementation

factory Input$PriceCreditInput({
  String? amount,
  int? periodValue,
  Enum$RecurrenceType? periodCycle,
}) =>
    Input$PriceCreditInput._({
      if (amount != null) r'amount': amount,
      if (periodValue != null) r'periodValue': periodValue,
      if (periodCycle != null) r'periodCycle': periodCycle,
    });