TwoColumnStyleFunc typedef

TwoColumnStyleFunc = Style? Function(String text, bool isLeft)

Callback for styling the left or right column.

text is the column text being rendered. isLeft indicates whether this is the left column.

Return a Style to apply, or null for no styling.

Implementation

typedef TwoColumnStyleFunc = Style? Function(String text, bool isLeft);