subtitlesSlash static method

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

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

Implementation

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