// Copyright (c) 2014, 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'asio;/// Whether `dart:io` is supported on this platform.boolgetsupported=>true;/// Asserts that the [name]d `dart:io` feature is supported on this platform.////// If `dart:io` doesn't work on this platform, this throws an/// [UnsupportedError].voidassertSupported(Stringname){}/// Creates a new `dart:io` HttpClient instance.io.HttpClientnewHttpClient()=>newio.HttpClient();/// Creates a new `dart:io` File instance with the given [path].io.FilenewFile(Stringpath)=>newio.File(path);/// Returns whether [error] is a `dart:io` HttpException.boolisHttpException(dynamicerror)=>errorisio.HttpException;/// Returns whether [client] is a `dart:io` HttpClient.boolisHttpClient(dynamicclient)=>clientisio.HttpClient;