HardwareException constructor

const HardwareException({
  1. required HardwareErrorCode code,
  2. required String message,
  3. Object? details,
})

Base constructor for hardware exceptions.

Implementation

const HardwareException({
  required this.code,
  required this.message,
  this.details,
});