toString method

  1. @override
String toString ()
override

Returns a string representation of this object.

Implementation

@override
String toString() {
  switch (direction) {
    case TextDirection.ltr:
      return '$point-ltr';
    case TextDirection.rtl:
      return '$point-rtl';
  }
  return '$point';
}