Scope constructor

Scope({
  1. required ScopeType type,
  2. required RemoteObject object,
  3. String? name,
  4. Location? startLocation,
  5. Location? endLocation,
})

Implementation

Scope({
  required this.type,
  required this.object,
  this.name,
  this.startLocation,
  this.endLocation,
});