arrowBendLeftUp static method

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

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

Implementation

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