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