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