// Use of this source code is governed by a BSD-style license that can be// found in the LICENSE file.import'platform.dart'asplatform;/// The dart:html implementation of [platform.defaultTargetPlatform].platform.TargetPlatformgetdefaultTargetPlatform{// To getter a better guess at the targetPlatform we need to be able to// reference the window, but that won't be availible until we fix the// platforms configuration for Flutter.platform.TargetPlatformresult=platform.TargetPlatform.android;if(platform.debugDefaultTargetPlatformOverride!=null)result=platform.debugDefaultTargetPlatformOverride;returnresult;}