includeList static method
FirebaseAccountIncludeList
includeList({
- WhereExpressionBuilder<
FirebaseAccountTable> ? where, - int? limit,
- int? offset,
- OrderByBuilder<
FirebaseAccountTable> ? orderBy, - bool orderDescending = false,
- OrderByListBuilder<
FirebaseAccountTable> ? orderByList, - FirebaseAccountInclude? include,
Implementation
static FirebaseAccountIncludeList includeList({
_i1.WhereExpressionBuilder<FirebaseAccountTable>? where,
int? limit,
int? offset,
_i1.OrderByBuilder<FirebaseAccountTable>? orderBy,
bool orderDescending = false,
_i1.OrderByListBuilder<FirebaseAccountTable>? orderByList,
FirebaseAccountInclude? include,
}) {
return FirebaseAccountIncludeList._(
where: where,
limit: limit,
offset: offset,
orderBy: orderBy?.call(FirebaseAccount.t),
orderDescending: orderDescending,
orderByList: orderByList?.call(FirebaseAccount.t),
include: include,
);
}