clockClockwise static method

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

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

Implementation

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