close method
Close the stream, discard any temporary backing storage.
handle
Handle of the stream to close.
Implementation
Future<void> close(StreamHandle handle) async {
await _client.send('IO.close', {
'handle': handle,
});
}
Close the stream, discard any temporary backing storage.
handle
Handle of the stream to close.
Future<void> close(StreamHandle handle) async {
await _client.send('IO.close', {
'handle': handle,
});
}