MiscellaneousPaymentDetailsDto.fromJson constructor

MiscellaneousPaymentDetailsDto.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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