arrowCircleUp static method

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

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

Implementation

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