debugText method
Implementation
String debugText() {
String retval = '${modelList.length} $collectionId founded\n';
for (AbsExModel model in modelList) {
if (model.isRemoved.value == false) {
retval +=
'${model.mid.substring(0, 15)}...,time=${model.updateTime},tag=${model.hashTag.value}\n';
}
}
return retval;
}