DataBreakpointInfoArguments class

Arguments for dataBreakpointInfo request.

Inheritance

Constructors

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

Properties

asAddress bool?
If true, the name is a memory address and the debugger should interpret it as a decimal value, or hex value if it is prefixed with 0x.
final
bytes int?
If specified, a debug adapter should return information for the range of memory extending bytes number of bytes from the address or variable specified by name. Breakpoints set using the resulting data ID should pause on data access anywhere within that range.
final
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
mode String?
The mode of the desired breakpoint. If defined, this must be one of the breakpointModes the debug adapter advertised in its Capabilities.
final
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, or an address if asAddress is also true.
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