RuntimeCompletionExpressionType class
RuntimeCompletionExpressionType
{ "libraryPath": optional FilePath "kind": RuntimeCompletionExpressionTypeKind "name": optional String "typeArguments": optional List
Clients may not extend, implement or mix-in this class.
Constructors
-
RuntimeCompletionExpressionType(RuntimeCompletionExpressionTypeKind kind, {String? libraryPath, String? name, List<
RuntimeCompletionExpressionType> ? typeArguments, RuntimeCompletionExpressionType? returnType, List<RuntimeCompletionExpressionType> ? parameterTypes, List<String> ? parameterNames}) - RuntimeCompletionExpressionType.fromJson(JsonDecoder jsonDecoder, String jsonPath, Object? json)
-
factory
Properties
- hashCode → int
-
The hash code for this object.
no setteroverride
- kind ↔ RuntimeCompletionExpressionTypeKind
-
The kind of the type.
getter/setter pair
- libraryPath ↔ String?
-
The path of the library that has this type. Omitted if the type is not
declared in any library, e.g. "dynamic", or "void".
getter/setter pair
- name ↔ String?
-
The name of the type. Omitted if the type does not have a name, e.g. an
inline function type.
getter/setter pair
-
parameterNames
↔ List<
String> ? -
If the type is a function type, the names of the function parameters of
all kinds - required, optional positional, and optional named. The names
of positional parameters are empty strings. Omitted if the type is not a
function type.
getter/setter pair
-
parameterTypes
↔ List<
RuntimeCompletionExpressionType> ? -
If the type is a function type, the types of the function parameters of
all kinds - required, optional positional, and optional named. Omitted if
the type is not a function type.
getter/setter pair
- returnType ↔ RuntimeCompletionExpressionType?
-
If the type is a function type, the return type of the function. Omitted
if the type is not a function type.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
-
typeArguments
↔ List<
RuntimeCompletionExpressionType> ? -
The type arguments of the type. Omitted if the type does not have type
parameters.
getter/setter pair
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, Object> - Returns a JSON presentation of the object.
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override