ChartJsonOptionPatchIssue constructor

const ChartJsonOptionPatchIssue({
  1. required String code,
  2. required ChartJsonOptionPatchIssueSeverity severity,
  3. required String message,
  4. String? schemaName,
  5. String? canonicalField,
  6. String? jsonPath,
  7. String? valueKey,
  8. Object? value,
  9. bool hasValue = false,
  10. ChartJsonOptionValueValidation? validation,
})

Implementation

const ChartJsonOptionPatchIssue({
  required this.code,
  required this.severity,
  required this.message,
  this.schemaName,
  this.canonicalField,
  this.jsonPath,
  this.valueKey,
  this.value,
  this.hasValue = false,
  this.validation,
});