DataBreakpointInfoArguments constructor

DataBreakpointInfoArguments({
  1. bool? asAddress,
  2. int? bytes,
  3. int? frameId,
  4. String? mode,
  5. required String name,
  6. int? variablesReference,
})

Implementation

DataBreakpointInfoArguments({
  this.asAddress,
  this.bytes,
  this.frameId,
  this.mode,
  required this.name,
  this.variablesReference,
});