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