arrowUUpRight static method

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

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

Implementation

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