textEntityTypeMentionName property
A text shows instead of a raw mention of the user (e.g., when the user has no username)
Implementation
TextEntityTypeMentionName? get textEntityTypeMentionName {
if (this is TextEntityTypeMentionName) {
return this as TextEntityTypeMentionName;
}
return null;
}