withSelectedBrushAndScanditIcon static method

Future<BarcodePickViewHighlightStyleResponse> withSelectedBrushAndScanditIcon(
  1. Brush? brush,
  2. Brush? selectedBrush,
  3. ScanditIcon icon,
  4. ScanditIcon? selectedIcon,
  5. 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,
  );
}