Remove unused dart:async imports. (#72410)

This commit is contained in:
Sam Rawlins 2020-12-16 11:23:03 -08:00 committed by GitHub
parent ca82c572b7
commit 8952fb38df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'dart:math';
import 'package:flutter/rendering.dart';

View File

@ -6,7 +6,7 @@
///
/// Asynchronous computations are represented by [Future]s and [Stream]s.
import 'dart:async' show Future, Stream, StreamSubscription;
import 'dart:async' show StreamSubscription;
import 'package:flutter/foundation.dart';