start method
Implementation
void start({required bool uploadEnabled}) {
_subscription = _bleSerial.dataStream.listen(_handleMessage);
state.uploadEnabled = uploadEnabled;
state.status = WorkStatus.working;
notifyState(state);
}
void start({required bool uploadEnabled}) {
_subscription = _bleSerial.dataStream.listen(_handleMessage);
state.uploadEnabled = uploadEnabled;
state.status = WorkStatus.working;
notifyState(state);
}