mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
11 lines
205 B
Dart
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;
|
|
}
|