subwrite/lib/section.dart

8 lines
118 B
Dart

class Section {
int lineNumber;
int level;
String title;
Section(this.lineNumber, this.level, this.title);
}