hideFormAccessoryBar method
hide or show accessory bar on keyboard
Implementation
Future<bool> hideFormAccessoryBar(bool hide) {
Completer<bool> completer = new Completer();
KeyboardCordova.hideFormAccessoryBar(hide, allowInterop((bool currentValue){
completer.complete(currentValue);
}));
return completer.future;
}