QueryCurrentEpochRequest.deserialize constructor

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

Implementation

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