percent static method

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

regular: percent thin: percent light: percent bold: percent fill: percent duotone: percent

Implementation

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