withDesc method

MetaGetBuilder withDesc(
  1. DateTime? ims
)

Add query parameters to fetch topic description if it's newer than the given timestamp

Implementation

MetaGetBuilder withDesc(DateTime? ims) {
  what['desc'] = {'ims': ims};
  return this;
}