arrowCircleDownLeft static method

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

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

Implementation

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