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