NetworkConfig constructor

NetworkConfig({
  1. String? baseUrl,
  2. String? httpProxy,
  3. int? httpProxyPort,
  4. String? contentType,
  5. int? receiveTimeout,
  6. int? connectTimeout,
})

Implementation

NetworkConfig(
    {this.baseUrl,
    this.httpProxy,
    this.httpProxyPort,
    this.contentType,
    this.receiveTimeout,
    this.connectTimeout});