shuffle method

Series shuffle(
  1. {int? seed,
  2. dynamic hint}
)

Returns a new shuffled series.

Implementation

Series shuffle({int? seed, dynamic hint}) =>
    RustLib.instance.api.seriesShuffle(
      that: this,
      seed: seed,
    );