repeatOnce static method

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

regular: repeat-once thin: repeat-once light: repeat-once bold: repeat-once fill: repeat-once duotone: repeat-once

Implementation

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