textEmpty method

bool textEmpty()

Implementation

bool textEmpty() {
  if (this == null ||
      this.mxText.startsWith('null') ||
      this.mxText.replaceAll(RegExp("[ \n\t\r\f]"), "").isEmpty) return true;
  return this!.isEmpty;
}