cake_wallet/lib/entities/mnemonic_item.dart

12 lines
205 B
Dart
Raw Normal View History

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