NotebookCell constructor

NotebookCell({
  1. required String cellType,
  2. required List<String> source,
  3. Map<String, dynamic>? metadata,
  4. List<Map<String, dynamic>>? outputs,
  5. int? executionCount,
})

Implementation

NotebookCell({
  required this.cellType,
  required this.source,
  this.metadata,
  this.outputs,
  this.executionCount,
});