bellRinging static method

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

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

Implementation

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