eyeClosed static method

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

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

Implementation

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