arrowURightUp static method

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

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

Implementation

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