handArrowUp static method

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

regular: hand-arrow-up thin: hand-arrow-up light: hand-arrow-up bold: hand-arrow-up fill: hand-arrow-up duotone: hand-arrow-up

Implementation

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