chatActionUploadingVideoNote property

ChatActionUploadingVideoNote? chatActionUploadingVideoNote

The user is uploading a video note

Implementation

ChatActionUploadingVideoNote? get chatActionUploadingVideoNote {
  if (this is ChatActionUploadingVideoNote) {
    return this as ChatActionUploadingVideoNote;
  }
  return null;
}