checkWifiEnabled method

  1. @override
Future<bool?> checkWifiEnabled()
override

Implementation

@override
Future<bool?> checkWifiEnabled() async {
  final res = await methodChannel.invokeMethod<bool?>("checkWifiEnabled");
  return res;
}