PlutoOutputViewer constructor

const PlutoOutputViewer({
  1. Key? key,
  2. required Stream? output,
  3. required PlutoCodeEditorController controller,
  4. Color? headerBakgroundColor,
  5. void onInputSend(
    1. String
    )?,
})

Implementation

const PlutoOutputViewer({
  Key? key,
  required this.output,
  required this.controller,
  this.headerBakgroundColor,
  this.onInputSend,
}) : super(key: key);