DisposingException constructor

DisposingException(
  1. Disposable disposable, [
  2. String? target
])

Implementation

factory DisposingException(Disposable disposable, [String? target]) {
  final prefix = _getDisposableExceptionMsgPrefix(target);
  return DisposingException._('$prefix$disposable is disposing');
}