deleteRow method
Future<UserProfileImage>
deleteRow(
- Session session,
- UserProfileImage row, {
- 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,
);
}