HardwareException constructor

const HardwareException({
  1. required String message,
  2. String code = 'HARDWARE_ERROR',
  3. String? module,
})

Implementation

const HardwareException({
  required this.message,
  this.code = 'HARDWARE_ERROR',
  this.module,
});