close method

Future<void> close()

Close the message port and free any resources associated with it.

Implementation

Future<void> close() async {
  Map<String, dynamic> args = <String, dynamic>{};
  args.putIfAbsent('index', () => this._index);
  await _webMessageChannel._channel.invokeMethod('close', args);
}