arrowBendLeftDown static method

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

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

Implementation

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