CakeWallet/lib/entities/mnemonic_item.dart

12 lines
214 B
Dart
Raw Normal View History

2020-06-20 10:10:00 +03:00
class MnemonicItem {
2022-10-12 13:09:57 -04:00
MnemonicItem({required String text}) : _text = text;
2020-06-20 10:10:00 +03:00
String get text => _text;
String _text;
void changeText(String text) => _text = text;
@override
String toString() => text;
}