findFirstAsync method

Future<R?> findFirstAsync({
  1. int? offset,
})

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

Implementation

Future<R?> findFirstAsync({int? offset}) =>
    _withQueryAsync((q) => q.findFirstAsync(offset: offset));