wine static method

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

regular: wine thin: wine light: wine bold: wine fill: wine duotone: wine

Implementation

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