FlutterOutlineKind class

FlutterOutlineKind

enum { DART_ELEMENT GENERIC NEW_INSTANCE INVOCATION VARIABLE PLACEHOLDER }

Clients may not extend, implement or mix-in this class.

Implemented types

Constructors

FlutterOutlineKind(String name)
factory
FlutterOutlineKind.fromJson(JsonDecoder jsonDecoder, String jsonPath, Object? json)
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
name String
The name of the enumerated value. This should match the name of the static getter which provides access to this enumerated value.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() String
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

DART_ELEMENT → const FlutterOutlineKind
A dart element declaration.
GENERIC → const FlutterOutlineKind
A generic Flutter element, without additional information.
INVOCATION → const FlutterOutlineKind
An invocation of a method, a top-level function, a function expression, etc.
NEW_INSTANCE → const FlutterOutlineKind
A new instance creation.
PLACEHOLDER → const FlutterOutlineKind
The parent node has a required Widget. The node works as a placeholder child to drop a new Widget to.
VALUES → const List<FlutterOutlineKind>
A list containing all of the enum values that are defined.
VARIABLE → const FlutterOutlineKind
A reference to a local variable, or a field.