NotebookEditInput constructor

NotebookEditInput({
  1. required String notebookPath,
  2. required String command,
  3. required int cellIndex,
  4. String? content,
  5. String? cellType,
  6. int? targetIndex,
})

Implementation

NotebookEditInput({
  required this.notebookPath,
  required this.command,
  required this.cellIndex,
  this.content,
  this.cellType,
  this.targetIndex,
});