find method

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

find gets an entry based by id

Implementation

@override
Future<T?> find(var id) async {
  return where({schema.primaryKey: id}).first;
}