alignCenterVerticalSimple property

AppIconData get alignCenterVerticalSimple

regular: align-center-vertical-simple thin: align-center-vertical-simple light: align-center-vertical-simple bold: align-center-vertical-simple fill: align-center-vertical-simple duotone: align-center-vertical-simple

Implementation

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