BloomNativeHardwareUnavailableException constructor
BloomNativeHardwareUnavailableException({})
Creates a BloomNativeHardwareUnavailableException with the missing hardware identifier and message.
Implementation
BloomNativeHardwareUnavailableException({
required this.hardware,
required String message,
dynamic details,
}) : super(
code: 'HARDWARE_UNAVAILABLE',
message: message,
details: details ?? {'hardware': hardware},
);