QueryTotalStrdBurnedResponse.deserialize constructor

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

Implementation

factory QueryTotalStrdBurnedResponse.deserialize(List<int> bytes) {
  final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
  return QueryTotalStrdBurnedResponse(
    totalBurned: decode.getString<String?>(1),
    protocolBurned: decode.getString<String?>(2),
    totalUserBurned: decode.getString<String?>(3),
  );
}