mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-21 14:48:53 +00:00
12 lines
No EOL
212 B
Dart
12 lines
No EOL
212 B
Dart
import 'package:mobx/mobx.dart';
|
|
|
|
part 'yat_store.g.dart';
|
|
|
|
class YatStore = YatStoreBase with _$YatStore;
|
|
|
|
abstract class YatStoreBase with Store {
|
|
YatStoreBase() : emoji = '';
|
|
|
|
@observable
|
|
String emoji;
|
|
} |