disableShakeForFeedback method
Implementation
@override
Future<void> disableShakeForFeedback() async {
try {
return methodChannel.invokeMethod<void>("disableShakeForFeedback");
} on PlatformException catch (e, s) {
print(s);
return;
}
}