chatActionCancel property

ChatActionCancel? chatActionCancel

The user has canceled the previous action

Implementation

ChatActionCancel? get chatActionCancel {
  if (this is ChatActionCancel) {
    return this as ChatActionCancel;
  }
  return null;
}