keyboardButtonTypeText property

KeyboardButtonTypeText? keyboardButtonTypeText

A simple button, with text that must be sent when the button is pressed

Implementation

KeyboardButtonTypeText? get keyboardButtonTypeText {
  if (this is KeyboardButtonTypeText) {
    return this as KeyboardButtonTypeText;
  }
  return null;
}