cake_wallet/lib/src/domain/common/mnemonic_item.dart
2020-06-20 10:10:00 +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;
}