eyeSlash static method

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

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

Implementation

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