NatrixDefaultTheme.of constructor

NatrixDefaultTheme.of(
  1. NatrixContext context, {
  2. int lineLength = 65,
  3. int maxCmdLength = 13,
  4. int maxFlagLength = 18,
})

Implementation

NatrixDefaultTheme.of(
  super.context, {
  int lineLength = 65,
  this.maxCmdLength = 13,
  this.maxFlagLength = 18,
}) : super.of() {
  try {
    this.lineLength = stdout.terminalColumns;
  } on StdoutException {
    this.lineLength = lineLength;
  }
}