reverse property

set reverse (bool v)

Implementation

set reverse(bool v) {
  if (_reverse == v) return;
  _reverse = v;
  markNeedsPaint();
}