findFirst method

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

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

Implementation

T? findFirst({int? offset}) => findAll(offset: offset, limit: 1).firstOrNull;