arrowsInLineVertical static method

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

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

Implementation

static PhosphorIconData arrowsInLineVertical(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.arrowsInLineVertical;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.arrowsInLineVertical;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.arrowsInLineVertical;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.arrowsInLineVertical;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.arrowsInLineVertical;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.arrowsInLineVertical;
  }
}