contentLoad property

Stream<Progress<Result>?> contentLoad

Implementation

Stream<Progress<Result>?> get contentLoad {
  _contentLoad ??= getContentData.loadBy(_contentTrigger.stream).share().startWith(null);
  return _contentLoad!;
}