pop static method

Future<bool> pop()

Implementation

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