repeatOnce static method
regular: 
thin: 
light: 
bold: 
fill: 
duotone: 
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;
  }
}