arrowArcRight static method

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

regular: arrow-arc-right thin: arrow-arc-right light: arrow-arc-right bold: arrow-arc-right fill: arrow-arc-right duotone: arrow-arc-right

Implementation

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