import 'package:touch_demonstrator/src/blocs/bluetoothBloc.dart'; import 'package:touch_demonstrator/src/blocs/debugCounterBloc.dart'; //import 'package:touch_demonstrator/src/blocs/touchDataBloc.dart'; class AppBloc { DebugBloc _debugBloc; // EvenCounterBloc _evenCounter; BluetoothBloc _bluetoothBloc; // TouchDataBloc _touchDataInputBloc; AppBloc() : _debugBloc = DebugBloc(), _bluetoothBloc = BluetoothBloc(); // _touchDataInputBloc = TouchDataBloc(); DebugBloc get debugBlocGetter => _debugBloc; // EvenCounterBloc get evenCounterBloc => _evenCounter; BluetoothBloc get bluetoothBlocGetter => _bluetoothBloc; // TouchDataBloc get touchInBlocGetter => _touchDataInputBloc; }