openNativeViewer static method

Future<bool> openNativeViewer(
  1. UArNativeViewerOptions options
)

Hands the model to the system viewer: Scene Viewer on Android, AR Quick Look on iOS, and either of them from a mobile browser.

Implementation

static Future<bool> openNativeViewer(UArNativeViewerOptions options) async {
  try {
    return await UArChannel.invoke<bool>("openNativeViewer", options.toMap()) ?? false;
  } on UArException {
    return false;
  }
}