bellSimpleSlash static method

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

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

Implementation

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