arrowCircleDownRight static method

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

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

Implementation

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