EvaluateArguments class

Arguments for evaluate request.

Inheritance

Constructors

EvaluateArguments({String? context, required String expression, ValueFormat? format, int? frameId})
EvaluateArguments.fromMap(Map<String, Object?> obj)

Properties

context String?
The context in which the evaluate request is used.
final
expression String
The expression to evaluate.
final
format ValueFormat?
Specifies details on how to format the result. The attribute is only honored by a debug adapter if the corresponding capability supportsValueFormattingOptions is true.
final
frameId int?
Evaluate the expression in the scope of this stack frame. If not specified, the expression is evaluated in the global scope.
final
hashCode int
The hash code for this object.
no setterinherited
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() Map<String, Object?>
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

canParse(Object? obj) bool
override
fromJson(Map<String, Object?> obj) EvaluateArguments