QueryLocalMessageVersionResponse.deserialize constructor

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

Implementation

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