handWaving static method

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

regular: hand-waving thin: hand-waving light: hand-waving bold: hand-waving fill: hand-waving duotone: hand-waving

Implementation

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