DataBreakpoint class

Properties of a data breakpoint passed to the setDataBreakpoints request.

Constructors

DataBreakpoint({DataBreakpointAccessType? accessType, String? condition, required String dataId, String? hitCondition})
DataBreakpoint.fromMap(Map<String, Object?> obj)

Properties

accessType DataBreakpointAccessType?
The access type of the data.
final
condition String?
An expression for conditional breakpoints.
final
dataId String
An id representing the data. This id is returned from the dataBreakpointInfo request.
final
hashCode int
The hash code for this object.
no setterinherited
hitCondition String?
An expression that controls how many hits of the breakpoint are ignored. The debug adapter is expected to interpret the expression as needed.
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
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
fromJson(Map<String, Object?> obj) DataBreakpoint