DataBreakpoint constructor

DataBreakpoint({
  1. DataBreakpointAccessType? accessType,
  2. String? condition,
  3. required String dataId,
  4. String? hitCondition,
})

Implementation

DataBreakpoint({
  this.accessType,
  this.condition,
  required this.dataId,
  this.hitCondition,
});