dev
dart 11 lines 214 Bytes
Raw
1 class MnemonicItem {
2 MnemonicItem({required String text}) : _text = text;
3
4 String get text => _text;
5 String _text;
6
7 void changeText(String text) => _text = text;
8
9 @override
10 String toString() => text;
11 }