copyWith method

  1. @override
PushMessageContentRecurringPayment copyWith({
  1. String? amount,
})
override

Implementation

@override
PushMessageContentRecurringPayment copyWith({
  String? amount,
}) =>
    PushMessageContentRecurringPayment(
      amount: amount ?? this.amount,
    );