billingDeletePaymentMethodIntent.fromJson constructor
Implementation
factory billingDeletePaymentMethodIntent.fromJson(Map<String, dynamic> json) {
final _paymentMethodId = json['paymentMethodId'] as String;
return billingDeletePaymentMethodIntent(
paymentMethodId: _paymentMethodId,
);
}