blob: 9b8f6b3ef8c2185d5da414ae0599042ad504b652 [file] [log] [blame] [view]
# writeEtc method
int writeEtc
(ByteData data, [List<[HandleDisposition](../../zircon/HandleDisposition-class.md)> handleDispositions])
## Implementation
```dart
int writeEtc(ByteData data, [List<HandleDisposition>? handleDispositions]) {
if (handle == null) {
return ZX.ERR_INVALID_ARGS;
}
return System.channelWriteEtc(handle!, data, handleDispositions ?? []);
}
```