textDirection property
The direction in which the columns are ordered.
Implementation
TextDirection get textDirection => _textDirection;
Implementation
set textDirection(TextDirection value) {
assert(value != null);
if (_textDirection == value)
return;
_textDirection = value;
markNeedsLayout();
}