close method

Future<void> close(
  1. StreamHandle handle
)

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,
  });
}