identifyNode method

Future<void> identifyNode(
  1. String serviceUuid
)

Identifies the node that is to be provisioned.

WARNING: This method is not intended to be used by external user of nrf_mesh_plugin. It is used by the provisioning method.

Implementation

Future<void> identifyNode(String serviceUuid) => _methodChannel.invokeMethod<void>(
      'identifyNode',
      {'serviceUuid': serviceUuid},
    );