renderContent method

void renderContent(
  1. Terminal terminal
)

Render content within the panel. The provided terminal is already set up such that it represents the full extent of the available content area of this Panel. By default, this method calls contentRenderer if it is defined.

Implementation

void renderContent(Terminal terminal) {
  if (contentRenderer != null) contentRenderer!(terminal);
}