call<T> abstract method

FutureOr<T> call<T>(
  1. Provider<T> provider
)

Returns a provider result from the current module.

Only providers in the current module (except itself) or exported providers in other imported modules can be obtained.

Implementation

FutureOr<T> call<T>(Provider<T> provider);