PaymentMethodAttachOptions.fromJson constructor

PaymentMethodAttachOptions.fromJson(
  1. Object? json
)

Implementation

factory PaymentMethodAttachOptions.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return PaymentMethodAttachOptions(
    customer: (map['customer'] as String),
    expand: map['expand'] == null
        ? null
        : (map['expand'] as List<Object?>)
            .map((el) => (el as String))
            .toList(),
  );
}