airplane static method

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

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

Implementation

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