subwrite/lib/section.dart

8 lines
118 B
Dart
Raw Permalink Normal View History

2022-10-08 20:52:10 +00:00
class Section {
int lineNumber;
int level;
String title;
Section(this.lineNumber, this.level, this.title);
}