start method

Query start({
  1. int? at,
  2. Document? after,
  3. bool nanoDate = false,
})

Implementation

Query start({int? at, Document? after, bool nanoDate: false}) => Query(
      client,
      index,
      compoundBody,
      "",
      at: at,
      after: after,
      nanoDate: nanoDate,
    );