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