arrowElbowDownLeft static method

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

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

Implementation

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