arrowDownLeft static method

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

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

Implementation

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