trafficCone static method

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

regular: traffic-cone thin: traffic-cone light: traffic-cone bold: traffic-cone fill: traffic-cone duotone: traffic-cone

Implementation

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