resolve method
Called to resolve an action by name.
actionType is the typed action kind being resolved (for example
ActionType.model or ActionType.tool). Compare it against the
ActionType constants rather than raw strings, since the underlying
wire value can differ from the constant name (for example
ActionType.tool serializes to tool.v2).
Implementation
Action? resolve(ActionType actionType, String name) {
return null;
}