arrowBendRightDown static method

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

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

Implementation

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