cameraSlash static method

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

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

Implementation

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