includeList static method

Implementation

static MethodInfoIncludeList includeList({
  _i1.WhereExpressionBuilder<MethodInfoTable>? where,
  int? limit,
  int? offset,
  _i1.OrderByBuilder<MethodInfoTable>? orderBy,
  _i1.OrderByListBuilder<MethodInfoTable>? orderByList,
  MethodInfoInclude? include,
}) {
  return MethodInfoIncludeList._(
    where: where,
    limit: limit,
    offset: offset,
    orderBy: orderBy?.call(MethodInfo.t),
    orderByList: orderByList?.call(MethodInfo.t),
    include: include,
  );
}