Find a record by its primary key.
@override Future<T?> find(dynamic id, [String column = 'id']) async { return where(column, '=', id).first(); }