invoke abstract method

  1. @Deprecated('Use call() instead. This method will be removed in version 1.0.0.')
Map<int, CallbackReturnType> invoke(
  1. CallbackInputType input
)

Invokes all registered callbacks with the given input.

All registered callbacks will receive the same input value. Returns a map with callback hashCode as key and return value as value.

Deprecated: Use call instead. This method will be removed in version 1.0.0.

Implementation

@Deprecated(
    'Use call() instead. This method will be removed in version 1.0.0.')
Map<int, CallbackReturnType> invoke(CallbackInputType input);