magnifyingGlassPlus static method

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

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

Implementation

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