create static method

ProfileService create(
  1. Client httpClient,
  2. Uri baseUrl,
  3. RequestInterceptor authInterceptor
)

Implementation

static ProfileService create(
    http.Client httpClient, Uri baseUrl, RequestInterceptor authInterceptor) {
  final client = ChopperClient(
    client: httpClient,
    baseUrl: baseUrl,
    interceptors: [
      HttpRequestLoggingInterceptor(),
      authInterceptor,
    ],
    converter: const JsonSerializableConverter({
      Profile: Profile.fromJson,
    }),
  );

  return _$ProfileService(client);
}