handleScale method
Implementation
void handleScale(
RendererCore renderer,
ScaleUpdateDetails details,
double scale,
) {
if (!hasPlugins) {
return;
}
for (final plugin in _plugins) {
plugin.onScale(renderer, details, scale);
}
}