blob: a12991ae8c87870ee9c01a7f425b6263cd52e56a [file] [log] [blame] [view]
# bind method
void bind
([Socket](../../zircon/Socket-class.md) socket)
## Implementation
```dart
void bind(Socket socket) {
if (isBound) {
throw ZirconApiError('SocketReader is already bound.');
}
_socket = socket;
_asyncWait();
}
```