EditorController constructor

EditorController(
  1. Map<String, Object>? dataEntity,
  2. String onSaveProcedure,
  3. List<EditorItem> editorItems
)

Implementation

EditorController(
  Map<String, Object>? dataEntity,
  this.onSaveProcedure,
  this.editorItems,
) {
  _addDefaultValues();
  initalValue(dataEntity);
}