popToRoot static method

Future<bool> popToRoot()

Implementation

static Future<bool> popToRoot() async {
  final bool? isCompleted = await _androidAutoController
      .flutterToNativeModule(FAAChannelTypes.popToRootTemplate);
  return isCompleted ?? false;
}