umbrellaSimple static method

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

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

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;
  }
}