PaymentMethodDetailsBoleto.fromJson constructor

PaymentMethodDetailsBoleto.fromJson(
  1. Object? json
)

Implementation

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