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