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