bluetooth static method

Future<void> bluetooth()

Toggle bluetooth.

If it is already turned on bluetooth ( ) will turn it off else it'll turn it on

Implementation

static Future<void> bluetooth() async {
  if (Platform.isIOS) {
  } else {
    await _channel.invokeMethod('bluetooth');
  }
}