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