bellZ static method

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

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

Implementation

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