arrowsDownUp static method

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

regular: arrows-down-up thin: arrows-down-up light: arrows-down-up bold: arrows-down-up fill: arrows-down-up duotone: arrows-down-up

Implementation

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