foundation.dart 939 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

/// Core Flutter framework primitives.
///
/// The features defined in this library are the lowest-level utility
/// classes and functions used by all the other layers of the Flutter
/// framework.
library foundation;

12 13 14 15 16 17
export 'package:meta/meta.dart' show
  mustCallSuper,
  optionalTypeArgs,
  protected,
  required;

18
export 'src/foundation/assertions.dart';
19
export 'src/foundation/basic_types.dart';
20
export 'src/foundation/binding.dart';
21
export 'src/foundation/change_notifier.dart';
22
export 'src/foundation/debug.dart';
23
export 'src/foundation/licenses.dart';
24
export 'src/foundation/observer_list.dart';
25
export 'src/foundation/platform.dart';
26
export 'src/foundation/print.dart';
27
export 'src/foundation/serialization.dart';
28
export 'src/foundation/synchronous_future.dart';