arrowLineUpRight static method

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

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

Implementation

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