getResolver method

Function? getResolver(
  1. String type
)

Returns a Function for a give Action type.

Implementation

Function? getResolver(String type) {
  return _actionExecutors[type];
}