reversed method

Ol reversed(
  1. bool boolean
)

This attribute specifies that the list's items are in reverse order. Read more...

Implementation

Ol reversed(bool boolean) {
  if (boolean && node.attrs != null) {
    VirtualAttr attr = VirtualAttr('reversed', '');
    node.attrs!.add(attr);
  }
  return this;
}