close method

Future<void> close(
  1. String name
)

Implementation

Future<void> close(String name) async {
  final response = await _invoke("close", {"name": name});
  if (response is! EmptyContent) {
    throw _unexpectedResponseError("close");
  }
}