rewindCircle static method

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

regular: rewind-circle thin: rewind-circle light: rewind-circle bold: rewind-circle fill: rewind-circle duotone: rewind-circle

Implementation

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