HttpRepository constructor

HttpRepository()

Abstract constructor

Implementation

HttpRepository() {
  _dio = Dio(options);
  addInstance(this);
  if (useInterceptors) {
    addInterceptors(interceptorsWrapper);
  }
  if (baseUrl != null) {
    baseUrl = baseUrl;
  }
}