checkWifi property

Future<bool?> checkWifi

Return true if the wifi is alreay turned on.

Return false if the wifi is turned off.

Implementation

static Future<bool?> get checkWifi async {
  bool? b = await _channel.invokeMethod('checkWifi');
  return b;
}