shared library

Constants

maxInteger → const int
The largest possible integer, used to refer to infinity internally.

Properties

defaultErrorHandler ErrorCallback
Returns the current system error handler.
getter/setter pair

Functions

replaceErrorHandler(ErrorCallback? errorHandler) Disposable
Replaces the default error handler.

Typedefs

CompleteCallback = void Function()
Callback type used to complete a sequence of values with a success.
ErrorCallback = void Function(Object error, StackTrace stackTrace)
Callback type used to complete a sequence of values with a failure.
NextCallback<T> = void Function(T value)
Callback type used to pass a value.