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