arrowsVertical static method

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

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

Implementation

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