bellSlash static method

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

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

Implementation

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