toString abstract method

  1. @override
String toString({
  1. String prefix = '',
  2. bool showTimestamp = true,
  3. bool showOrdinals = true,
  4. bool showChildren = true,
})
override

returns a string representation of the object. The prefix is prepended to each line to allow indented representation. The display of the timestamp may be disabled setting showTimestamp to false. Ordinals may be removed by setting showOrdinals to false. The children field of the node may be removed by setting showChildren to false.

Implementation

@override
String toString(
    {String prefix = '',
    bool showTimestamp = true,
    bool showOrdinals = true,
    bool showChildren = true});