repeat static method

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

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

Implementation

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