paperPlane static method

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

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

Implementation

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