pinwheel static method

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

regular: pinwheel thin: pinwheel light: pinwheel bold: pinwheel fill: pinwheel duotone: pinwheel

Implementation

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