eyeglasses static method

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

regular: eyeglasses thin: eyeglasses light: eyeglasses bold: eyeglasses fill: eyeglasses duotone: eyeglasses

Implementation

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