CallFrame constructor
      
      CallFrame({ 
    
    
- required CallFrameId callFrameId,
- required String functionName,
- Location? functionLocation,
- required Location location,
- required List<Scope> scopeChain,
- required RemoteObject this$,
- RemoteObject? returnValue,
- 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,
});