arrowsOutLineVertical static method

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

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 PhosphorIconData arrowsOutLineVertical(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.arrowsOutLineVertical;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.arrowsOutLineVertical;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.arrowsOutLineVertical;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.arrowsOutLineVertical;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.arrowsOutLineVertical;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.arrowsOutLineVertical;
  }
}