showTo method

void showTo(
  1. RenderOutput out,
  2. void content(
    1. FrameContext ctx
    )
)

Renders to a provided RenderOutput without interaction.

Useful when you need to compose display-only frames with other outputs.

Implementation

void showTo(RenderOutput out, void Function(FrameContext ctx) content) {
  render(out, content);
}