start property
The left edge of the box for left-to-right text; the right edge of the box for right-to-left text.
See also:
- direction, which specifies the text direction.
Implementation
double get start {
return (direction == TextDirection.ltr) ? left : right;
}