arrowsOutLineVertical property

AppIconData get arrowsOutLineVertical

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

Implementation

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