shuffle static method

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

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

Implementation

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