reverse method

void reverse()

Reverses the order of elements in this list.

Implementation

void reverse() {
  _list = _list.reversed.toList();
}