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