coffee static method

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

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

Implementation

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