Connectivity constructor

Connectivity({
  1. bool? freeWifi,
  2. String? freeWifiException,
  3. bool? publicAreaWifiAvailable,
  4. String? publicAreaWifiAvailableException,
  5. bool? publicInternetTerminal,
  6. String? publicInternetTerminalException,
  7. bool? wifiAvailable,
  8. String? wifiAvailableException,
})

Implementation

Connectivity({
  this.freeWifi,
  this.freeWifiException,
  this.publicAreaWifiAvailable,
  this.publicAreaWifiAvailableException,
  this.publicInternetTerminal,
  this.publicInternetTerminalException,
  this.wifiAvailable,
  this.wifiAvailableException,
});