includeList static method

FutureCallEntryIncludeList includeList({
  1. WhereExpressionBuilder<FutureCallEntryTable>? where,
  2. int? limit,
  3. int? offset,
  4. OrderByBuilder<FutureCallEntryTable>? orderBy,
  5. bool orderDescending = false,
  6. OrderByListBuilder<FutureCallEntryTable>? orderByList,
  7. FutureCallEntryInclude? include,
})

Implementation

static FutureCallEntryIncludeList includeList({
  _i1.WhereExpressionBuilder<FutureCallEntryTable>? where,
  int? limit,
  int? offset,
  _i1.OrderByBuilder<FutureCallEntryTable>? orderBy,
  bool orderDescending = false,
  _i1.OrderByListBuilder<FutureCallEntryTable>? orderByList,
  FutureCallEntryInclude? include,
}) {
  return FutureCallEntryIncludeList._(
    where: where,
    limit: limit,
    offset: offset,
    orderBy: orderBy?.call(FutureCallEntry.t),
    orderDescending: orderDescending,
    orderByList: orderByList?.call(FutureCallEntry.t),
    include: include,
  );
}