arrowLineUp static method

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

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

Implementation

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