isBluetoothEnabled method
Implementation
@override
Future<bool> isBluetoothEnabled() async {
try {
final bool result =
await _channel.invokeMethod<bool>('isBluetoothEnabled') ?? false;
return result;
} catch (e) {
return false;
}
}