ChartJsonOptionPatchEntry constructor

const ChartJsonOptionPatchEntry({
  1. required String schemaName,
  2. required String canonicalField,
  3. required String jsonPath,
  4. required Object? value,
  5. required bool usedOverride,
  6. required bool overwritesExistingValue,
  7. required ChartJsonOptionValueValidation validation,
  8. Object? previousValue,
  9. String? valueKey,
  10. bool hasPreviousValue = false,
  11. ChartJsonOptionPatchChangeKind changeKind = ChartJsonOptionPatchChangeKind.added,
})

Implementation

const ChartJsonOptionPatchEntry({
  required this.schemaName,
  required this.canonicalField,
  required this.jsonPath,
  required this.value,
  required this.usedOverride,
  required this.overwritesExistingValue,
  required this.validation,
  this.previousValue,
  this.valueKey,
  this.hasPreviousValue = false,
  this.changeKind = ChartJsonOptionPatchChangeKind.added,
});