QueryDepositByNodeRequest.fromJson constructor
Implementation
factory QueryDepositByNodeRequest.fromJson(Map<String, dynamic> json) {
return QueryDepositByNodeRequest(
networkAddr: json.valueAsString<String?>(
'network_addr',
acceptCamelCase: true,
),
queryType: json.valueAsInt<int?>('query_type', acceptCamelCase: true),
);
}