bellSimpleZ static method

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

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

Implementation

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