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