OutboundPaymentsPaymentMethodDetailsFinancialAccount.fromJson constructor

OutboundPaymentsPaymentMethodDetailsFinancialAccount.fromJson(
  1. Object? json
)

Implementation

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