magicWand static method

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

regular: magic-wand thin: magic-wand light: magic-wand bold: magic-wand fill: magic-wand duotone: magic-wand

Implementation

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