ByteColorScheme constructor
const
ByteColorScheme({})
Creates a custom color scheme with explicit colors for each byte type.
All parameters are required. Consider using ByteColorScheme.standard, ByteColorScheme.dark, or ByteColorScheme.fromTheme for predefined schemes.
Implementation
const ByteColorScheme({
required this.nullByte,
required this.printableAscii,
required this.controlChar,
required this.extendedAscii,
required this.selectedBackground,
required this.selectedForeground,
});