DataBreakpointInfoArguments class

Arguments for dataBreakpointInfo request.

Inheritance

Constructors

DataBreakpointInfoArguments({int? frameId, required String name, int? variablesReference})
DataBreakpointInfoArguments.fromMap(Map<String, Object?> obj)

Properties

frameId int?
When name is an expression, evaluate it in the scope of this stack frame. If not specified, the expression is evaluated in the global scope. When variablesReference is specified, this property has no effect.
final
hashCode int
The hash code for this object.
no setterinherited
name String
The name of the variable's child to obtain data breakpoint information for. If variablesReference isn't specified, this can be an expression.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
variablesReference int?
Reference to the variable container if the data breakpoint is requested for a child of the container. The variablesReference must have been obtained in the current suspended state. See 'Lifetime of Object References' in the Overview section for details.
final

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) DataBreakpointInfoArguments