callBell static method

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

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

Implementation

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