ConnectivityInfo constructor

const ConnectivityInfo({
  1. required bool isConnected,
  2. required String networkType,
  3. required bool isMetered,
  4. required bool isVpn,
  5. required int? signalStrength,
  6. required String? ipAddress,
})

API Documentation for ConnectivityInfo.

Implementation

const ConnectivityInfo({
  required this.isConnected,
  required this.networkType,
  required this.isMetered,
  required this.isVpn,
  required this.signalStrength,
  required this.ipAddress,
});