cake_wallet/lib/entities/mnemonic_item.dart

12 lines
214 B
Dart
Raw Normal View History

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