QueryRemoteTokenMessengerRequest.deserialize constructor
Implementation
factory QueryRemoteTokenMessengerRequest.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryRemoteTokenMessengerRequest(domainId: decode.getInt<int?>(1));
}