dispatch method

  1. @override
void dispatch(
  1. String customId,
  2. List params
)
override

Implementation

@override
void dispatch(String customId, List params) {
  final component = _components[customId];
  if (component != null) {
    Function.apply((component as dynamic).handle, params);
  }
}