HardwareException.unsupported constructor
HardwareException.unsupported(
- String feature
Creates a specific unsupported exception subclass.
Implementation
factory HardwareException.unsupported(String feature) {
return HardwareUnsupportedException(
message: '$feature is not supported on this platform.',
);
}