statusEditPhoto property

Stream<AppStatus> statusEditPhoto

Stream AppStatus to know the status while editing the document with filters

Implementation

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