InvokeUtil class

Utilities related to invoations.

Constructors

InvokeUtil()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

invokeSafely<T>(FutureOr<T> action()) Future<T?>
Invokes the given function safely. By safely, we mean it will catch all exceptions and ignore them.
invokeSafelyWith<T, A>(FutureOr<T> action(A arg), A arg) Future<T?>
Invokes the given function safely. By safely, we mean it will catch all exceptions and ignore them.