arrowBendDoubleUpLeft static method

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

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

Implementation

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