SetupIntentSepaDebit.fromJson constructor

SetupIntentSepaDebit.fromJson(
  1. 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));
}