includeList static method

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

Implementation

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