desktopTower static method

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

regular: desktop-tower thin: desktop-tower light: desktop-tower bold: desktop-tower fill: desktop-tower duotone: desktop-tower

Implementation

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