QueryTotalClaimableRequest.deserialize constructor
Implementation
factory QueryTotalClaimableRequest.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryTotalClaimableRequest(
airdropIdentifier: decode.getString<String?>(1),
address: decode.getString<String?>(2),
includeClaimed: decode.getBool<bool?>(3),
);
}