pintGlass static method

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

regular: pint-glass thin: pint-glass light: pint-glass bold: pint-glass fill: pint-glass duotone: pint-glass

Implementation

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