1// Copyright 2014 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5/// Core Flutter framework primitives.
6///
7/// The features defined in this library are the lowest-level utility
8/// classes and functions used by all the other layers of the Flutter
9/// framework.
10library foundation;
11
12export 'package:meta/meta.dart' show
13 factory,
14 immutable,
15 mustCallSuper,
16 nonVirtual,
17 optionalTypeArgs,
18 protected,
19 required,
20 visibleForTesting;
21
22export 'src/foundation/annotations.dart';
23export 'src/foundation/assertions.dart';
24export 'src/foundation/basic_types.dart';
25export 'src/foundation/binding.dart';
26export 'src/foundation/bitfield.dart';
27export 'src/foundation/capabilities.dart';
28export 'src/foundation/change_notifier.dart';
29export 'src/foundation/collections.dart';
30export 'src/foundation/consolidate_response.dart';
31export 'src/foundation/constants.dart';
32export 'src/foundation/debug.dart';
33export 'src/foundation/diagnostics.dart';
34export 'src/foundation/isolates.dart';
35export 'src/foundation/key.dart';
36export 'src/foundation/licenses.dart';
37export 'src/foundation/memory_allocations.dart';
38export 'src/foundation/node.dart';
39export 'src/foundation/object.dart';
40export 'src/foundation/observer_list.dart';
41export 'src/foundation/persistent_hash_map.dart';
42export 'src/foundation/platform.dart';
43export 'src/foundation/print.dart';
44export 'src/foundation/serialization.dart';
45export 'src/foundation/service_extensions.dart';
46export 'src/foundation/stack_frame.dart';
47export 'src/foundation/synchronous_future.dart';
48export 'src/foundation/timeline.dart';
49export 'src/foundation/unicode.dart';
50