withLaterSub method

MetaGetBuilder withLaterSub(
  1. int? limit
)

Add query parameters to fetch subscriptions updated since the last update

Implementation

MetaGetBuilder withLaterSub(int? limit) {
  var ims = topic.isP2P() ? _getIms() : topic.lastSubsUpdate;
  return withSub(ims, limit, null);
}