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