hurricane static method

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

regular: hurricane thin: hurricane light: hurricane bold: hurricane fill: hurricane duotone: hurricane

Implementation

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