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