rocketLaunch static method

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

regular: rocket-launch thin: rocket-launch light: rocket-launch bold: rocket-launch fill: rocket-launch duotone: rocket-launch

Implementation

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