HexViewer constructor

const HexViewer({
  1. Key? key,
  2. required List<int> data,
  3. Widget? customAdditionalInfoWidget,
  4. HexConfig config = const HexConfig(),
  5. ValueChanged<ByteSelection?>? onSelectionChanged,
})

Implementation

const HexViewer({
  super.key,
  required this.data,
  this.customAdditionalInfoWidget,
  this.config = const HexConfig(),
  this.onSelectionChanged,
});