arrowDownRight static method

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

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

Implementation

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