arrowUDownLeft static method

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

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

Implementation

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