dev
dart 5 lines 91 Bytes
Raw
1 abstract class SettingsListItem {
2 SettingsListItem(this.title);
3
4 final String title;
5 }