PropertyAccess constructor

PropertyAccess({
  1. ComputedValue? computedValue,
  2. required SimpleIdentifier property,
  3. required Expression realTarget,
  4. required String source,
  5. Expression? target,
})

Implementation

PropertyAccess({
  super.computedValue,
  required this.property,
  required this.realTarget,
  required super.source,
  this.target,
});