statusTakePhotoPage property

Stream<AppStatus> statusTakePhotoPage

Stream AppStatus to know the status while taking the picture

Implementation

Stream<AppStatus> get statusTakePhotoPage {
  return _appBloc.stream.transform(
    StreamTransformer.fromHandlers(
      handleData: (data, sink) => sink.add(data.statusTakePhotoPage),
    ),
  );
}