NiceViewChange constructor

const NiceViewChange({
  1. required NiceViewChangeType type,
  2. required String componentId,
  3. String? field,
  4. dynamic oldValue,
  5. dynamic newValue,
})

Implementation

const NiceViewChange({
  required this.type,
  required this.componentId,
  this.field,
  this.oldValue,
  this.newValue,
});