cake_wallet/lib/entities/mnemonic_item.dart
2022-10-12 13:09:57 -04:00

11 lines
214 B
Dart

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