magnifyingGlass static method

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

regular: magnifying-glass thin: magnifying-glass light: magnifying-glass bold: magnifying-glass fill: magnifying-glass duotone: magnifying-glass

Implementation

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