statusSavePhotoDocument property

Stream<AppStatus> statusSavePhotoDocument

Stream AppStatus to know the status while saving the document with all filters and cropping area

Implementation

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