DebugAdapterArgumentReader class
A helper for reading arguments for DAP requests from the client.
Constructors
- DebugAdapterArgumentReader(String request)
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
read<
T> (Map< String, Object?> obj, String field) → T -
Reads a value of type
T
fromfield
inobj
. -
readList<
T> (Map< String, Object?> obj, String field) → List<T> -
Reads a List of values of type
T
fromfield
inobj
. -
readMap<
K, V> (Map< String, Object?> obj, String field) → Map<K, V> -
Reads a Map of types
K
,V
fromfield
inobj
. -
readOptionalList<
T> (Map< String, Object?> obj, String field) → List<T> ? -
Reads an optional List of values of type
T
fromfield
inobj
. -
readOptionalMap<
K, V> (Map< String, Object?> obj, String field) → Map<K, V> ? -
Reads an optional Map of types
K
,V
fromfield
inobj
. -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited