cake_wallet/lib/entities/mnemonic_item.dart
2020-09-21 14:50:26 +03:00

11 lines
205 B
Dart

class MnemonicItem {
MnemonicItem({String text}) : _text = text;
String get text => _text;
String _text;
void changeText(String text) => _text = text;
@override
String toString() => text;
}