webcamSlash static method

PhosphorIconData webcamSlash([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: webcam-slash thin: webcam-slash light: webcam-slash bold: webcam-slash fill: webcam-slash duotone: webcam-slash

Implementation

static PhosphorIconData webcamSlash(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.webcamSlash;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.webcamSlash;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.webcamSlash;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.webcamSlash;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.webcamSlash;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.webcamSlash;
  }
}