HexControls constructor

const HexControls({
  1. Key? key,
  2. required HexConfig config,
  3. required ByteSelection? selection,
  4. required void onCopy(
    1. CopyFormat format
    ),
  5. required ValueChanged<HexConfig> onConfigChanged,
})

Implementation

const HexControls({
  super.key,
  required this.config,
  required this.selection,
  required this.onCopy,
  required this.onConfigChanged,
});