arrowBendUpLeft static method

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

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

Implementation

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