QueryAccountAddressByIDRequest.fromJson constructor
Implementation
factory QueryAccountAddressByIDRequest.fromJson(Map<String, dynamic> json) {
return QueryAccountAddressByIDRequest(
id: json.valueAsBigInt<BigInt?>('id', acceptCamelCase: true),
accountId: json.valueAsBigInt<BigInt?>(
'account_id',
acceptCamelCase: true,
),
);
}