funnelX static method

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

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

Implementation

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