arrowLineDownRight static method

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

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

Implementation

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