bellSimple static method

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

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

Implementation

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