deleteWhere method
      
Future<List<RuntimeSettings> > 
deleteWhere(
    
- Session session, {
- required WhereExpressionBuilder<RuntimeSettingsTable> where,
- Transaction? transaction,
Deletes all rows matching the where expression.
Implementation
Future<List<RuntimeSettings>> deleteWhere(
  _i1.Session session, {
  required _i1.WhereExpressionBuilder<RuntimeSettingsTable> where,
  _i1.Transaction? transaction,
}) async {
  return session.db.deleteWhere<RuntimeSettings>(
    where: where(RuntimeSettings.t),
    transaction: transaction,
  );
}