textEntityTypeMention property
A mention of a user, a supergroup, or a channel by their username
Implementation
TextEntityTypeMention? get textEntityTypeMention {
if (this is TextEntityTypeMention) {
return this as TextEntityTypeMention;
}
return null;
}