void shuffle(
[Random random]
)

This operation is not supported by an unmodifiable list.

Source

/** This operation is not supported by an unmodifiable list. */
void shuffle([Random random]) {
  throw new UnsupportedError(
      "Cannot modify an unmodifiable list");
}