withDel method
Add query parameters to fetch deleted messages within explicit limits. Any/all parameters can be null
Implementation
MetaGetBuilder withDel(int? since, int? limit) {
if (since != null || limit != null) {
what['del'] = {'since': since, 'limit': limit};
}
return this;
}