arrowElbowRightDown static method

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

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

Implementation

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