computerTower property

AppIconData get computerTower

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

Implementation

static AppIconData get computerTower {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.computerTower;
    case AppIconsStyle.thin:
      return AppIconsThin.computerTower;
    case AppIconsStyle.light:
      return AppIconsLight.computerTower;
    case AppIconsStyle.bold:
      return AppIconsBold.computerTower;
    case AppIconsStyle.fill:
      return AppIconsFill.computerTower;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.computerTower;
  }
}