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