// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. import 'dart:io'; /// A server for Dart Devtools. class DevTools { final String hostname; final int port; final HttpServer _server; Uri get uri => Uri(scheme: 'http', host: hostname, port: port); /// Null until [close] is called. /// /// All subsequent calls to [close] will return this future. Future? _closed; DevTools(this.hostname, this.port, this._server); Future close() => _closed ??= _server.close(); }