blob: 7e99641172cedd395c44524a52da177a2d432747 [file] [log] [blame] [view]
# RemoteDir constructor
*[<Null safety>](https://dart.dev/null-safety)*
RemoteDir([Channel](../../zircon/Channel-class.md) channel)
<p>Constructs the <a href="../../package-fuchsia_vfs_vfs/RemoteDir-class.md">RemoteDir</a> with a given <code>channel</code> to the remote.</p>
## Implementation
```dart
RemoteDir(Channel channel) {
_proxy.ctrl.bind(InterfaceHandle<Directory>(channel));
}
```