RenderConfig.fromRenderer constructor
Implementation
factory RenderConfig.fromRenderer(
Renderer renderer, {
int terminalWidth = 80,
}) => RenderConfig(
terminalWidth: terminalWidth,
colorProfile: renderer.colorProfile,
hasDarkBackground: renderer.hasDarkBackground,
);