fastForwardCircle static method

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

regular: fast-forward-circle thin: fast-forward-circle light: fast-forward-circle bold: fast-forward-circle fill: fast-forward-circle duotone: fast-forward-circle

Implementation

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