attach method

void attach(
  1. RendererCore renderer
)

Implementation

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