DebugAdapterArgumentReader class

A helper for reading arguments for DAP requests from the client.

Constructors

DebugAdapterArgumentReader(String request)

Properties

hashCode int
The hash code for this object.
no setterinherited
request String
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
read<T>(Map<String, Object?> obj, String field) → T
Reads a value of type T from field in obj.
readList<T>(Map<String, Object?> obj, String field) List<T>
Reads a List of values of type T from field in obj.
readMap<K, V>(Map<String, Object?> obj, String field) Map<K, V>
Reads a Map of types K,V from field in obj.
readOptionalList<T>(Map<String, Object?> obj, String field) List<T>?
Reads an optional List of values of type T from field in obj.
readOptionalMap<K, V>(Map<String, Object?> obj, String field) Map<K, V>?
Reads an optional Map of types K,V from field in obj.
toString() String
A string representation of this object.
inherited

Operators

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