needle static method

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

regular: needle thin: needle light: needle bold: needle fill: needle duotone: needle

Implementation

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