Changes constructor

Changes({
  1. String? field,
  2. String? label,
  3. String? newText,
  4. dynamic newValue,
  5. String? oldText,
  6. dynamic oldValue,
  7. Map<String, dynamic>? options,
  8. int? typeId,
})

Implementation

Changes({
  this.field,
  this.label,
  this.newText,
  this.newValue,
  this.oldText,
  this.oldValue,
  this.options,
  this.typeId,
});