updateNewChosenInlineResult property

UpdateNewChosenInlineResult? updateNewChosenInlineResult

The user has chosen a result of an inline query; for bots only

Implementation

UpdateNewChosenInlineResult? get updateNewChosenInlineResult {
  if (this is UpdateNewChosenInlineResult) {
    return this as UpdateNewChosenInlineResult;
  }
  return null;
}