arrowCircleDown static method

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

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

Implementation

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