CallFrame constructor

CallFrame({
  1. required CallFrameId callFrameId,
  2. required String functionName,
  3. Location? functionLocation,
  4. required Location location,
  5. required List<Scope> scopeChain,
  6. required RemoteObject this$,
  7. RemoteObject? returnValue,
  8. bool? canBeRestarted,
})

Implementation

CallFrame({
  required this.callFrameId,
  required this.functionName,
  this.functionLocation,
  required this.location,
  required this.scopeChain,
  required this.this$,
  this.returnValue,
  this.canBeRestarted,
});