eyedropper static method

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

regular: eyedropper thin: eyedropper light: eyedropper bold: eyedropper fill: eyedropper duotone: eyedropper

Implementation

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