delete static method

Future<int> delete(
  1. Session session, {
  2. required ServerHealthMetricExpressionBuilder where,
  3. Transaction? transaction,
})

Implementation

static Future<int> delete(
  _i1.Session session, {
  required ServerHealthMetricExpressionBuilder where,
  _i1.Transaction? transaction,
}) async {
  return session.db.delete<ServerHealthMetric>(
    where: where(ServerHealthMetric.t),
    transaction: transaction,
  );
}