arrowUUpLeft static method

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

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

Implementation

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