# duplicate method | |
[Vmo](../../zircon/Vmo-class.md) duplicate | |
(int rights) | |
<p>Duplicate this <a href="../../zircon/Vmo-class.md">Vmo</a> with the given rights.</p> | |
## Implementation | |
```dart | |
Vmo duplicate(int rights) { | |
return Vmo(handle!.duplicate(rights)); | |
} | |
``` | |