includeList static method

UserProfileIncludeList includeList({
  1. WhereExpressionBuilder<UserProfileTable>? where,
  2. int? limit,
  3. int? offset,
  4. OrderByBuilder<UserProfileTable>? orderBy,
  5. bool orderDescending = false,
  6. OrderByListBuilder<UserProfileTable>? orderByList,
  7. 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,
  );
}