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