joaopaulofcc

Untitled

Dec 2nd, 2020
1,847
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.22 KB | None | 0 0
  1. import 'package:mobx/mobx.dart';
  2. part 'counter.g.dart';
  3.  
  4. class Counter = _Counter with _$Counter;
  5.  
  6. abstract class _Counter with Store {
  7.   @observable
  8.   int value = 0;
  9.  
  10.   @action
  11.   increment() {
  12.     value++;
  13.   }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment