NatrixDefaultTheme.of constructor
NatrixDefaultTheme.of(
- NatrixContext context, {
- int lineLength = 65,
- int maxCmdLength = 13,
- 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;
}
}