binoculars static method

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

regular: binoculars thin: binoculars light: binoculars bold: binoculars fill: binoculars duotone: binoculars

Implementation

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