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