toPostfixNotation method

String toPostfixNotation()

Implementation

String toPostfixNotation() {
  _postfixNotation = '';
  _postOrderTraversal(_root);
  return _postfixNotation;
}