withData method

MetaGetBuilder withData(
  1. int? since,
  2. int? before,
  3. int? limit
)

Add query parameters to fetch messages within explicit limits

Implementation

MetaGetBuilder withData(int? since, int? before, int? limit) {
  what['data'] = {'since': since, 'before': before, 'limit': limit};
  return this;
}