butterfly static method

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

regular: butterfly thin: butterfly light: butterfly bold: butterfly fill: butterfly duotone: butterfly

Implementation

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