arrowLineDownLeft static method

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

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

Implementation

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