FeeDetails.fromJson constructor
Implementation
FeeDetails.fromJson(Map<String, dynamic> json) {
amount = json['amount'];
isGatewayFee = json['is_gateway_fee'];
prepaid = json['prepaid'];
description = json['description'];
currency = json['currency'];
type = json['type'];
}