Skip to content

Instantly share code, notes, and snippets.

@jacobaraujo7
Last active May 11, 2019 02:59
Show Gist options
  • Save jacobaraujo7/7438e0bfcb3974463f41141b4e742a9f to your computer and use it in GitHub Desktop.
Save jacobaraujo7/7438e0bfcb3974463f41141b4e742a9f to your computer and use it in GitHub Desktop.
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