arrowsCounterClockwise static method

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

regular: arrows-counter-clockwise thin: arrows-counter-clockwise light: arrows-counter-clockwise bold: arrows-counter-clockwise fill: arrows-counter-clockwise duotone: arrows-counter-clockwise

Implementation

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