arrowsVertical property

AppIconData get arrowsVertical

regular: arrows-vertical thin: arrows-vertical light: arrows-vertical bold: arrows-vertical fill: arrows-vertical duotone: arrows-vertical

Implementation

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