blob: 3f9e8add87a0446cd1130b430f62f31d1923acaf [file] [log] [blame] [view]
# 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));
}
```