paperPlaneTilt static method

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

regular: paper-plane-tilt thin: paper-plane-tilt light: paper-plane-tilt bold: paper-plane-tilt fill: paper-plane-tilt duotone: paper-plane-tilt

Implementation

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