canVibrate property

Future<bool> canVibrate

Whether the device can actually vibrate or not

Implementation

static Future<bool> get canVibrate async {
  final bool isOn = await _channel.invokeMethod('canVibrate');
  return isOn;
}