arrowElbowLeft static method

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

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

Implementation

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