beerBottle static method

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

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

Implementation

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