| 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. |
| 10 | library foundation; |
| 11 | |
| 12 | export 'package:meta/meta.dart' |
| 13 | show |
| 14 | factory, |
| 15 | immutable, |
| 16 | internal, |
| 17 | mustCallSuper, |
| 18 | nonVirtual, |
| 19 | optionalTypeArgs, |
| 20 | protected, |
| 21 | required, |
| 22 | visibleForOverriding, |
| 23 | visibleForTesting; |
| 24 | |
| 25 | export 'src/foundation/annotations.dart'; |
| 26 | export 'src/foundation/assertions.dart'; |
| 27 | export 'src/foundation/basic_types.dart'; |
| 28 | export 'src/foundation/binding.dart'; |
| 29 | export 'src/foundation/bitfield.dart'; |
| 30 | export 'src/foundation/capabilities.dart'; |
| 31 | export 'src/foundation/change_notifier.dart'; |
| 32 | export 'src/foundation/collections.dart'; |
| 33 | export 'src/foundation/consolidate_response.dart'; |
| 34 | export 'src/foundation/constants.dart'; |
| 35 | export 'src/foundation/debug.dart'; |
| 36 | export 'src/foundation/diagnostics.dart'; |
| 37 | export 'src/foundation/isolates.dart'; |
| 38 | export 'src/foundation/key.dart'; |
| 39 | export 'src/foundation/licenses.dart'; |
| 40 | export 'src/foundation/memory_allocations.dart'; |
| 41 | export 'src/foundation/node.dart'; |
| 42 | export 'src/foundation/object.dart'; |
| 43 | export 'src/foundation/observer_list.dart'; |
| 44 | export 'src/foundation/persistent_hash_map.dart'; |
| 45 | export 'src/foundation/platform.dart'; |
| 46 | export 'src/foundation/print.dart'; |
| 47 | export 'src/foundation/serialization.dart'; |
| 48 | export 'src/foundation/service_extensions.dart'; |
| 49 | export 'src/foundation/stack_frame.dart'; |
| 50 | export 'src/foundation/synchronous_future.dart'; |
| 51 | export 'src/foundation/timeline.dart'; |
| 52 | export 'src/foundation/unicode.dart'; |
| 53 | |