jarLabel static method

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

regular: jar-label thin: jar-label light: jar-label bold: jar-label fill: jar-label duotone: jar-label

Implementation

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