arrowCounterClockwise static method

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

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

Implementation

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