QueryAddressConvertResponse.fromJson constructor
Implementation
factory QueryAddressConvertResponse.fromJson(Map<String, dynamic> json) {
return QueryAddressConvertResponse(
hexAddress: json.valueAsString<String?>(
'hex_address',
acceptCamelCase: true,
),
bech32Address: json.valueAsString<String?>(
'bech32_address',
acceptCamelCase: true,
),
);
}