handEye static method

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

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

Implementation

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