coffeeBean static method

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

regular: coffee-bean thin: coffee-bean light: coffee-bean bold: coffee-bean fill: coffee-bean duotone: coffee-bean

Implementation

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