fromRawValue static method
Implementation
static BarcodeFormat fromRawValue(int rawValue) {
return BarcodeFormat.values.firstWhere(
(element) => element.rawValue == rawValue,
orElse: () => BarcodeFormat.unknown);
}
static BarcodeFormat fromRawValue(int rawValue) {
return BarcodeFormat.values.firstWhere(
(element) => element.rawValue == rawValue,
orElse: () => BarcodeFormat.unknown);
}