removeNodeWithIndex method

Future<void> removeNodeWithIndex(
  1. int index
)

Implementation

Future<void> removeNodeWithIndex(int index) async {
  try {
    return await _channel.invokeMethod('removeARCoreNodeWithIndex', {
      'index': index,
    });
  } catch (ex) {
    print(ex);
  }
}