EditorWidget constructor

EditorWidget({
  1. bool abstract = false,
  2. String? baseType = widget,
  3. Map<String, EditorWidgetType>? widgets,
  4. Map<String, EditorActionType>? actions,
  5. Map<String, EditorPropertyType>? properties,
  6. List<String>? tags,
})

Implementation

EditorWidget({
  super.abstract = false,
  super.baseType = widget,
  this.widgets,
  this.actions,
  super.properties,
  this.tags,
});