remove method

  1. @MPI(name: "mesh.net.remove")
Future<void> remove(
  1. String sid,
  2. String did, {
  3. Context? ctx,
})

Remove the network route. 删除组网信息.

Implementation

@MPI(name: "mesh.net.remove")
Future<void> remove(String sid, String did, {Context? ctx}) {
  throw UnimplementedError('remove() has not been implemented.');
}