CLIOutput constructor

CLIOutput({
  1. bool noColor = false,
})

Implementation

CLIOutput({this.noColor = false}) {
  if (noColor) {
    ansiColorDisabled = true;
  }
}