QuerySmartContractStateResponse.deserialize constructor

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

Implementation

factory QuerySmartContractStateResponse.deserialize(List<int> bytes) {
  final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
  return QuerySmartContractStateResponse(
    data: decode.getBytes<List<int>?>(1),
  );
}