MiscellaneousPaymentDetailsDto.fromJson constructor
Implementation
factory MiscellaneousPaymentDetailsDto.fromJson(Map<String, dynamic> json) {
return MiscellaneousPaymentDetailsDto(
type: decodePaymentType(PaymentTypeEnumMap, json["type"] as String),
);
}