airplaneTakeoff static method

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

regular: airplane-takeoff thin: airplane-takeoff light: airplane-takeoff bold: airplane-takeoff fill: airplane-takeoff duotone: airplane-takeoff

Implementation

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