HexViewer constructor
const
HexViewer({
- Key? key,
- required List<
int> data, - Widget? extraWidget,
- HexConfig config = const HexConfig(),
- ValueChanged<
ByteSelection?> ? onSelectionChanged, - bool showInfo = true,
- bool showTranslations = false,
Implementation
const HexViewer({
super.key,
required this.data,
this.extraWidget,
this.config = const HexConfig(),
this.onSelectionChanged,
this.showInfo = true,
this.showTranslations = false,
});