NatrixDefaultTheme.of constructor

NatrixDefaultTheme.of(
  1. NatrixContext context, {
  2. int lineLength = 65,
})

Implementation

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