findFirst method

R? findFirst({
  1. int? offset,
})

Find the first object that matches this query or null if no object matches.

Implementation

R? findFirst({int? offset}) => _withQuery((q) => q.findFirst(offset: offset));