ManifoldEditorOverrideContext constructor

const ManifoldEditorOverrideContext({
  1. required BuildContext buildContext,
  2. required ArtifactFieldMirror field,
  3. required Property? property,
  4. required dynamic value,
  5. required Type valueType,
  6. required ValueChanged onChanged,
  7. bool collectionElement = false,
  8. bool readOnly = false,
  9. List<ManifoldValidator> validators = const <ManifoldValidator>[],
})

Implementation

const ManifoldEditorOverrideContext({
  required this.buildContext,
  required this.field,
  required this.property,
  required this.value,
  required this.valueType,
  required this.onChanged,
  this.collectionElement = false,
  this.readOnly = false,
  this.validators = const <ManifoldValidator>[],
});