Sign in
fuchsia
/
third_party
/
dart-pkg
/
main
/
.
/
mobx
/
example
/
lib
/
counter.dart
blob: aef810275cdb6a3bed9fdb54f1e4c982d2f632a4 [
file
]
import
'package:mobx/mobx.dart'
;
part
'counter.g.dart'
;
class
Counter
=
_Counter with _$Counter
;
abstract
class
_Counter with Store
{
@observable
int
value
=
0
;
@action
void
increment
()
{
value
++;
}
}