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