find method

Future<T?> find(
  1. dynamic id
)

Implementation

Future<T?> find(dynamic id) {
  where('id', '=', id);

  return first();
}