arrowBendDownRight static method

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

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

Implementation

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