ProcessEventBody constructor

ProcessEventBody({
  1. bool? isLocalProcess,
  2. required String name,
  3. int? pointerSize,
  4. String? startMethod,
  5. int? systemProcessId,
})

Implementation

ProcessEventBody({
  this.isLocalProcess,
  required this.name,
  this.pointerSize,
  this.startMethod,
  this.systemProcessId,
});