init method

void init()

Initialize class

Implementation

void init() {
  _api = Dio(baseOptions);

  if (useInterceptors) {
    _addInterceptors();
  }

  if (_initDio != null) {
    _api = _initDio!(_api);
  }
}