brandy static method

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

regular: brandy thin: brandy light: brandy bold: brandy fill: brandy duotone: brandy

Implementation

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