UserService constructor

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

Implementation

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