attach method
Implementation
void attach(RendererCore renderer) {
if (!hasPlugins) {
return;
}
for (final plugin in _plugins) {
plugin.onAttach(renderer);
}
}
void attach(RendererCore renderer) {
if (!hasPlugins) {
return;
}
for (final plugin in _plugins) {
plugin.onAttach(renderer);
}
}