arrowUDownRight static method

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

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

Implementation

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