deleteRow method

Future<UserProfileImage> deleteRow(
  1. Session session,
  2. UserProfileImage row, {
  3. Transaction? transaction,
})

Deletes a single UserProfileImage.

Implementation

Future<UserProfileImage> deleteRow(
  _i1.Session session,
  UserProfileImage row, {
  _i1.Transaction? transaction,
}) async {
  return session.db.deleteRow<UserProfileImage>(
    row,
    transaction: transaction,
  );
}