arrowULeftDown static method

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

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

Implementation

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