arrowClockwise static method

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

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

Implementation

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