QueryAccountResponse.deserialize constructor
Implementation
factory QueryAccountResponse.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryAccountResponse(
balance: decode.getString<String?>(1),
codeHash: decode.getString<String?>(2),
nonce: decode.getBigInt<BigInt?>(3),
);
}