arrowURightDown static method

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

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

Implementation

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