blob: 385f7f66b969534f3ca9dfca0f911d88f174e472 [file] [log] [blame] [view]
# close method
void close
()
## Implementation
```dart
void close() {
if (!isBound) {
return;
}
_waiter!.cancel();
_channel!.close();
_channel = null;
}
```