EditorAction constructor

EditorAction({
  1. bool abstract = false,
  2. String? baseType = action,
  3. Map<String, EditorActionType>? actions,
  4. Map<String, EditorPropertyType>? properties,
})

Implementation

EditorAction({
  super.abstract = false,
  super.baseType = action,
  this.actions,
  super.properties,
});