funnelSimple static method

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

regular: funnel-simple thin: funnel-simple light: funnel-simple bold: funnel-simple fill: funnel-simple duotone: funnel-simple

Implementation

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