falloutShelter static method

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

regular: fallout-shelter thin: fallout-shelter light: fallout-shelter bold: fallout-shelter fill: fallout-shelter duotone: fallout-shelter

Implementation

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