turnOnBluetooth method

  1. @override
Future<bool> turnOnBluetooth()
override

Implementation

@override
Future<bool> turnOnBluetooth() async {
  final bool? result = await methodChannel.invokeMethod('turnOnBluetooth');
  return result??false;
}