Here is an example of how to shuffle a List in Dart/Flutter.
var list = ['a', 'b', 'c', 'd', 'f', 'g'];
list.shuffle();
print('$list');
Thanks,Srikanth