addCoachingOverlay method

Future<void> addCoachingOverlay(
  1. CoachingOverlayGoal goal
)

A view that displays standardized onboarding instructions to direct users toward a specific goal. The view will use context aware messaging and animations to instruct the user on gathering required info for the AR session. Requires iOS 13 and above.

Implementation

Future<void> addCoachingOverlay(CoachingOverlayGoal goal) =>
    _channel.invokeMethod('addCoachingOverlay', {
      'goal': goal.index,
    });