tornado static method

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

regular: tornado thin: tornado light: tornado bold: tornado fill: tornado duotone: tornado

Implementation

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