call method

ScopedQueryBase<Result, TRef> call(
  1. Param param
)

By passing param, the corresponding ScopedQuery is returned.

paramを渡すことで対応したScopedQueryを返します。

Implementation

ScopedQueryBase<Result, TRef> call(Param param) => _ScopedQueryImpl(
      (ref) => provider(ref, param),
      name: "${_name ?? hashCode}#${param.hashCode}",
      autoDisposeWhenUnreferenced: autoDisposeWhenUnreferenced,
    );