prettyPrint method
override
Implementation
@override
void prettyPrint(int indent, bool recurse) {
NumberFormat nf = NumberFormat("###.##", "en_US");
print(
"${"".padLeft(indent, '\t')}${Tag.getCanonicalName(getTagType())}: ${nf.format(value)}");
}