18 lines
392 B
Dart
18 lines
392 B
Dart
class HistoryWindow {
|
|
const HistoryWindow({
|
|
required this.lines,
|
|
required this.hasMoreAbove,
|
|
this.outputSeedText = '',
|
|
this.oldestSequence,
|
|
this.newestSequence,
|
|
this.currentSequence,
|
|
});
|
|
|
|
final List<String> lines;
|
|
final bool hasMoreAbove;
|
|
final String outputSeedText;
|
|
final int? oldestSequence;
|
|
final int? newestSequence;
|
|
final int? currentSequence;
|
|
}
|