shuffleSimple static method

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

regular: shuffle-simple thin: shuffle-simple light: shuffle-simple bold: shuffle-simple fill: shuffle-simple duotone: shuffle-simple

Implementation

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