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