HexRow constructor

const HexRow({
  1. Key? key,
  2. required HexLine line,
  3. required HexConfig config,
  4. required ByteSelection? selection,
  5. void onBytePressed(
    1. int offset, {
    2. bool isShiftHeld,
    })?,
  6. void onByteDragEnter(
    1. int offset
    )?,
})

Implementation

const HexRow({
  super.key,
  required this.line,
  required this.config,
  required this.selection,
  this.onBytePressed,
  this.onByteDragEnter,
});