withSelectedBrushAndScanditIcon static method
Future<BarcodePickViewHighlightStyleResponse>
withSelectedBrushAndScanditIcon(
- Brush? brush,
- Brush? selectedBrush,
- ScanditIcon icon,
- ScanditIcon? selectedIcon,
- BarcodePickStatusIconStyle? statusIconStyle,
Implementation
static Future<BarcodePickViewHighlightStyleResponse> withSelectedBrushAndScanditIcon(
Brush? brush,
Brush? selectedBrush,
ScanditIcon icon,
ScanditIcon? selectedIcon,
BarcodePickStatusIconStyle? statusIconStyle,
) async {
return BarcodePickViewHighlightStyleResponse._(
brush: brush,
selectedBrush: selectedBrush,
iconScandit: icon,
selectedIconScandit: selectedIcon,
statusIconStyle: statusIconStyle,
);
}