About
Contact
QtCreator
KDevelop
Solarized
line #s on
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
mustCallSuper
,
17
nonVirtual
,
18
optionalTypeArgs
,
19
protected
,
20
required
,
21
visibleForOverriding
,
22
visibleForTesting
;
23
24
export
'src/foundation/annotations.dart'
;
25
export
'src/foundation/assertions.dart'
;
26
export
'src/foundation/basic_types.dart'
;
27
export
'src/foundation/binding.dart'
;
28
export
'src/foundation/bitfield.dart'
;
29
export
'src/foundation/capabilities.dart'
;
30
export
'src/foundation/change_notifier.dart'
;
31
export
'src/foundation/collections.dart'
;
32
export
'src/foundation/consolidate_response.dart'
;
33
export
'src/foundation/constants.dart'
;
34
export
'src/foundation/debug.dart'
;
35
export
'src/foundation/diagnostics.dart'
;
36
export
'src/foundation/isolates.dart'
;
37
export
'src/foundation/key.dart'
;
38
export
'src/foundation/licenses.dart'
;
39
export
'src/foundation/memory_allocations.dart'
;
40
export
'src/foundation/node.dart'
;
41
export
'src/foundation/object.dart'
;
42
export
'src/foundation/observer_list.dart'
;
43
export
'src/foundation/persistent_hash_map.dart'
;
44
export
'src/foundation/platform.dart'
;
45
export
'src/foundation/print.dart'
;
46
export
'src/foundation/serialization.dart'
;
47
export
'src/foundation/service_extensions.dart'
;
48
export
'src/foundation/stack_frame.dart'
;
49
export
'src/foundation/synchronous_future.dart'
;
50
export
'src/foundation/timeline.dart'
;
51
export
'src/foundation/unicode.dart'
;
52
Learn more about Flutter for embedded and desktop on industrialflutter.com