syringe static method

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

regular: syringe thin: syringe light: syringe bold: syringe fill: syringe duotone: syringe

Implementation

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