beerStein static method

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

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

Implementation

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