eyedropperSample static method

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

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

Implementation

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