parachute static method

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

regular: parachute thin: parachute light: parachute bold: parachute fill: parachute duotone: parachute

Implementation

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