cake_wallet/lib/store/yat_store.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;
}