includeList static method

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