findSingleRow static method
Future<AuthKey?>
findSingleRow(
- Session session, {
- AuthKeyExpressionBuilder? where,
- int? offset,
- Column? orderBy,
- bool orderDescending = false,
- bool useCache = true,
- Transaction? transaction,
Implementation
static Future<AuthKey?> findSingleRow(
_i1.Session session, {
AuthKeyExpressionBuilder? where,
int? offset,
_i1.Column? orderBy,
bool orderDescending = false,
bool useCache = true,
_i1.Transaction? transaction,
}) async {
return session.db.findSingleRow<AuthKey>(
where: where != null ? where(AuthKey.t) : null,
offset: offset,
orderBy: orderBy,
orderDescending: orderDescending,
useCache: useCache,
transaction: transaction,
);
}