isEdit property
bool
get
isEdit
Implementation
bool get isEdit {
if (bodyType == MessageType.TXT) {
if ((body as TextMessageBody).modifyCount == null) return false;
return (body as TextMessageBody).modifyCount! > 0;
}
return false;
}