deleteRow static method

  1. @Deprecated('Will be removed in 2.0.0. Use: db.deleteRow instead.')
Future<bool> deleteRow(
  1. Session session,
  2. UserImage row, {
  3. Transaction? transaction,
})

Implementation

@Deprecated('Will be removed in 2.0.0. Use: db.deleteRow instead.')
static Future<bool> deleteRow(
  _i1.Session session,
  UserImage row, {
  _i1.Transaction? transaction,
}) async {
  return session.db.deleteRow(
    row,
    transaction: transaction,
  );
}