AuthService constructor

AuthService({
  1. required String apiKey,
  2. required String? token,
  3. required UHttpClient httpClient,
})

Implementation

AuthService({
  required this.apiKey,
  required this.token,
  required this.httpClient,
});