popModal static method
Implementation
static Future<bool> popModal() async {
FlutterAndroidAutoController.currentPresentTemplate = null;
final bool? isCompleted = await _androidAutoController
.flutterToNativeModule(FAAChannelTypes.closePresent);
return isCompleted ?? false;
}