arrowUp static method

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

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

Implementation

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