Last active
May 11, 2019 02:59
-
-
Save jacobaraujo7/7438e0bfcb3974463f41141b4e742a9f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:bloc_pattern/bloc_pattern.dart'; | |
class ValueBloc { | |
double value = 0.0; | |
onChangeValue(double v) { | |
value = v; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment