mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-24 00:10:47 +00:00
14 lines
584 B
Dart
14 lines
584 B
Dart
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
import 'event_communication_metering.dart';
|
|
import 'state_communication_metering.dart';
|
|
|
|
class MeteringCommunicationBloc
|
|
extends Bloc<MeteringCommunicationEvent, MeteringCommunicationState> {
|
|
MeteringCommunicationBloc() : super(const InitState()) {
|
|
// `MeasureState` is not const, so that `Bloc` treats each state as new and updates state stream
|
|
// ignore: prefer_const_constructors
|
|
on<MeasureEvent>((_, emit) => emit(MeasureState()));
|
|
on<MeasuredEvent>((event, emit) => emit(MeasuredState(event.ev100)));
|
|
}
|
|
}
|