includeList static method

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

Implementation

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