DisposableExceptionCallback typedef

DisposableExceptionCallback = FutureOr<void> Function(IDisposable disposable, dynamic error, StackTrace stackTrace)

Implementation

typedef DisposableExceptionCallback = FutureOr<void> Function(
  IDisposable disposable,
  // ignore: avoid_annotating_with_dynamic
  dynamic error,
  StackTrace stackTrace,
);