blob: 41a9cc7936a34dcaa63187d713d838c122b8b293 [file] [log] [blame] [view]
# close method
void close
()
<p>Closes the underlying channel.</p>
## Implementation
```dart
void close() {
_channel?.close();
_channel = null;
}
```