bellSimpleRinging static method

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

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

Implementation

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