arrowsClockwise static method

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

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

Implementation

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