inputChatPhotoAnimation property

InputChatPhotoAnimation? inputChatPhotoAnimation

An animation in MPEG4 format; must be square, at most 10 seconds long, have width between 160 and 1280 and be at most 2MB in size

Implementation

InputChatPhotoAnimation? get inputChatPhotoAnimation {
  if (this is InputChatPhotoAnimation) {
    return this as InputChatPhotoAnimation;
  }
  return null;
}