setNotificationVibration method
This method is used to set the notification vibration.
Implementation
@override
setNotificationVibration(bool enable) async {
try {
await mirrorFlyMethodChannel
.invokeMethod('setNotificationVibration', {"enable": enable});
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}