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