arrowBendDownLeft static method

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

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

Implementation

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