PropertyOverride constructor

PropertyOverride({
  1. required LocalId target,
  2. required String path,
  3. required PropertyValue value,
})

Creates an override of path on target to value.

Implementation

PropertyOverride({
  required this.target,
  required this.path,
  required this.value,
});