airTrafficControl static method

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

regular: air-traffic-control thin: air-traffic-control light: air-traffic-control bold: air-traffic-control fill: air-traffic-control duotone: air-traffic-control

Implementation

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