auth property

ArgumentsProvider<AuthRepository, ({AuthService authService, Http http})> auth
final

Implementation

static final auth = Provider.arguments<
    AuthRepository,
    ({
      Http http,
      AuthService authService,
    })>(
  (ref) => AuthRepositoryImpl(
    ref.arguments.http,
    ref.arguments.authService,
  ),
);