deleteRow method
Future<UserProfile>
deleteRow(
- DatabaseSession session,
- UserProfile row, {
- Transaction? transaction,
Deletes a single UserProfile.
Implementation
Future<UserProfile> deleteRow(
_is.DatabaseSession session,
UserProfile row, {
_is.Transaction? transaction,
}) async {
return session.db.deleteRow<UserProfile>(
row,
transaction: transaction,
);
}