findFirstRow method
Future<FutureCallEntry?>
findFirstRow(
- DatabaseAccessor databaseAccessor, {
- WhereExpressionBuilder<
FutureCallEntryTable> ? where, - int? offset,
- OrderByBuilder<
FutureCallEntryTable> ? orderBy, - bool orderDescending = false,
- OrderByListBuilder<
FutureCallEntryTable> ? orderByList, - Transaction? transaction,
Implementation
Future<FutureCallEntry?> findFirstRow(
_i1.DatabaseAccessor databaseAccessor, {
_i1.WhereExpressionBuilder<FutureCallEntryTable>? where,
int? offset,
_i1.OrderByBuilder<FutureCallEntryTable>? orderBy,
bool orderDescending = false,
_i1.OrderByListBuilder<FutureCallEntryTable>? orderByList,
_i1.Transaction? transaction,
}) async {
return databaseAccessor.db.findFirstRow<FutureCallEntry>(
where: where?.call(FutureCallEntry.t),
orderBy: orderBy?.call(FutureCallEntry.t),
orderByList: orderByList?.call(FutureCallEntry.t),
orderDescending: orderDescending,
offset: offset,
transaction: transaction ?? databaseAccessor.transaction,
);
}