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