QueryGetProtoRevMaxPoolPointsPerBlockResponse.deserialize constructor
Implementation
factory QueryGetProtoRevMaxPoolPointsPerBlockResponse.deserialize(
List<int> bytes,
) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryGetProtoRevMaxPoolPointsPerBlockResponse(
maxPoolPointsPerBlock: decode.getBigInt<BigInt?>(1),
);
}