QueryTotalStrdBurnedResponse.deserialize constructor
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),
);
}