arrowCircleUpLeft static method

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

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

Implementation

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