QueryAccountAddressByIDRequest.deserialize constructor

QueryAccountAddressByIDRequest.deserialize(
  1. List<int> bytes
)

Implementation

factory QueryAccountAddressByIDRequest.deserialize(List<int> bytes) {
  final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
  return QueryAccountAddressByIDRequest(
    id: decode.getBigInt<BigInt?>(1),
    accountId: decode.getBigInt<BigInt?>(2),
  );
}