Files
accessible-ssh/lib/models/terminal_line.dart

9 lines
262 B
Dart
Raw Normal View History

// lib/models/terminal_line.dart
// This file will define the data model for a single line of terminal output.
class TerminalLine {
final String text;
// TODO: Add properties for ANSI styling, e.g., color, bold, etc.
TerminalLine({required this.text});
}