withDel method

MetaGetBuilder withDel(
  1. int? since,
  2. int? limit
)

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;
}