umbrella static method

PhosphorIconData umbrella([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: umbrella thin: umbrella light: umbrella bold: umbrella fill: umbrella duotone: umbrella

Implementation

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