noneExist<TModel extends OrmEntity> static method
Check if no models exist in the database.
Note: Renamed from doesntExist() for consistency.
Implementation
static Future<bool> noneExist<TModel extends OrmEntity>({
String? connection,
}) async => !await anyExist<TModel>(connection: connection);