EditorScreen constructor

const EditorScreen({
  1. Key? key,
  2. required String title,
  3. required Widget editorControlView,
  4. Color? color,
  5. required EditorController editorController,
  6. VoidCallback? onBack,
  7. List<Widget>? actionAppbar,
})

Implementation

const EditorScreen({
  super.key,
  required this.title,
  required this.editorControlView,
  this.color,
  required this.editorController,
  this.onBack,
  this.actionAppbar,
});