toInfoString method
Implementation
@override
String toInfoString(
{bool withParentEvents = true,
bool withType = true,
String indent = ''}) {
var s = StringBuffer();
if (withType) {
s.write('[$type]');
}
s.write('($x , $y)');
_appendTargetInfo(s);
_appendParentInfo(s, withParentEvents, indent);
return s.toString();
}