percent static method
regular:
thin:
light:
bold:
fill:
duotone:
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;
}
}