QueryEscrowAddressRequest.fromJson constructor
Implementation
factory QueryEscrowAddressRequest.fromJson(Map<String, dynamic> json) {
return QueryEscrowAddressRequest(
portId: json.valueAsString<String?>('port_id', acceptCamelCase: true),
channelId: json.valueAsString<String?>(
'channel_id',
acceptCamelCase: true,
),
);
}