PaymentMethodOptionsCashapp.fromJson constructor
PaymentMethodOptionsCashapp.fromJson(
- Object? json
Implementation
factory PaymentMethodOptionsCashapp.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return PaymentMethodOptionsCashapp(
setupFutureUsage: map['setup_future_usage'] == null
? null
: CheckoutAcssDebitPaymentMethodOptionsSetupFutureUsage.fromJson(
map['setup_future_usage']));
}