20 lines
608 B
Dart
20 lines
608 B
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// @dart = 2.8
|
|
|
|
import 'base/context.dart';
|
|
import 'doctor.dart';
|
|
import 'ios/simulators.dart';
|
|
import 'macos/xcdevice.dart';
|
|
import 'reporting/crash_reporting.dart';
|
|
|
|
export 'globals_null_migrated.dart';
|
|
|
|
CrashReporter get crashReporter => context.get<CrashReporter>();
|
|
Doctor get doctor => context.get<Doctor>();
|
|
IOSSimulatorUtils get iosSimulatorUtils => context.get<IOSSimulatorUtils>();
|
|
|
|
XCDevice get xcdevice => context.get<XCDevice>();
|