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