QueryCurrentEpochRequest.deserialize constructor
Implementation
factory QueryCurrentEpochRequest.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryCurrentEpochRequest(identifier: decode.getString<String?>(1));
}