eye static method

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

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

Implementation

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