downloadAnchor method

Future<bool?> downloadAnchor(
  1. String cloudanchorid
)

Try to download anchor with the given ID from the Google Cloud Anchor API and add it to the scene

Implementation

Future<bool?> downloadAnchor(String cloudanchorid) async {
  print("TRYING TO DOWNLOAD ANCHOR WITH ID " + cloudanchorid);
  _channel
      .invokeMethod<bool>('downloadAnchor', {"cloudanchorid": cloudanchorid});
  return null;
}