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