videoCameraSlash static method

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

regular: video-camera-slash thin: video-camera-slash light: video-camera-slash bold: video-camera-slash fill: video-camera-slash duotone: video-camera-slash

Implementation

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