handleMove method
Implementation
void handleMove(
RendererCore renderer,
ScaleUpdateDetails details,
double x,
double y,
) {
if (!hasPlugins) {
return;
}
for (final plugin in _plugins) {
plugin.onMove(renderer, details, x, y);
}
}