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