bell static method

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

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

Implementation

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