copyWith method

GetPaymentForm copyWith({
  1. InputInvoice? inputInvoice,
  2. ThemeParameters? theme,
})

Implementation

GetPaymentForm copyWith({
  InputInvoice? inputInvoice,
  ThemeParameters? theme,
}) =>
    GetPaymentForm(
      inputInvoice: inputInvoice ?? this.inputInvoice,
      theme: theme ?? this.theme,
    );