statemachine 1.0.6 statemachine: ^1.0.6 copied to clipboard
A simple, but generic state machine framework for Dart.
StateMachine #
A simple, but generic state machine framework for Dart.
Latest version of the code is available from GitHub. Continuous build results are available from Jenkins. An introductionary tutorial is part of the class documentation.
This code was inspired by work of Vassily Boykov on his Smalltalk Announcement framework.
Basic Usage #
Installation #
Add the dependency to your package's pubspec.yaml file:
dependencies:
statemachine: ">=1.0.0 <2.0.0"
Then on the command line run:
$ pub get
To import the package into your Dart code write:
import 'package:statemachine/statemachine.dart';
Misc #
License #
The MIT License, see LICENSE.