MeshagentTerminalView constructor

const MeshagentTerminalView({
  1. Key? key,
  2. required MeshagentTerminalController terminal,
  3. bool muted = false,
  4. bool showCursor = true,
  5. EdgeInsets padding = const EdgeInsets.all(16),
})

Implementation

const MeshagentTerminalView({
  super.key,
  required this.terminal,
  this.muted = false,
  this.showCursor = true,
  this.padding = const EdgeInsets.all(16),
});