textEntityTypeBotCommand property

TextEntityTypeBotCommand? textEntityTypeBotCommand

A bot command, beginning with "/"

Implementation

TextEntityTypeBotCommand? get textEntityTypeBotCommand {
  if (this is TextEntityTypeBotCommand) {
    return this as TextEntityTypeBotCommand;
  }
  return null;
}