display method

TextSpan display(
  1. TextStyle theme
)

Implementation

TextSpan display(final TextStyle theme) {
  return TextSpan(text: "$message\n", style: type == ShellStatus.failed ? theme.copyWith(color: Colors.red) : theme);
}