DisposableExceptionCallback typedef

DisposableExceptionCallback = dynamic Function(IDisposable disposable, dynamic error, StackTrace stackTrace)

Implementation

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