sprayBottle static method

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

regular: spray-bottle thin: spray-bottle light: spray-bottle bold: spray-bottle fill: spray-bottle duotone: spray-bottle

Implementation

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