error method

void error(
  1. Exception exception, {
  2. Iterable<IObservable<BaseEvent>>? changes,
})

Implementation

void error(
  Exception exception, {
  Iterable<IObservable<BaseEvent>>? changes,
}) =>
    emit(
      ViewStatus.error,
      exception: exception,
      changes: changes,
    );