ascending property

bool get ascending

Implementation

bool get ascending => _ascending ?? true;
set ascending (dynamic v)

Implementation

set ascending(dynamic v)
{
  _ascending = S.toBool(v);
}