call method

  1. @override
FactoryProvider<TValue, TParam> call(
  1. TParam param
)
override

Implementation

@override
FactoryProvider<TValue, TParam> call(TParam param) {
  return FactoryProvider<TValue, TParam>(
    (get) => create(get, param),
    factory: this,
    debugName: debugName,
    dispose: dispose,
    param: param,
  );
}