Checks if record with id exists.
id
static Future<bool> exists<T extends Model>({required int id}) async { return await find<T>(id: id) != null; }