includeList static method
EmailAuthIncludeList
includeList({
- WhereExpressionBuilder<
EmailAuthTable> ? where, - int? limit,
- int? offset,
- OrderByBuilder<
EmailAuthTable> ? orderBy, - bool orderDescending = false,
- OrderByListBuilder<
EmailAuthTable> ? orderByList, - 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,
);
}