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