arrowCircleUpRight static method

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

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

Implementation

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