funnel static method

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

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

Implementation

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