chatActionRecordingVideoNote property

ChatActionRecordingVideoNote? chatActionRecordingVideoNote

The user is recording a video note

Implementation

ChatActionRecordingVideoNote? get chatActionRecordingVideoNote {
  if (this is ChatActionRecordingVideoNote) {
    return this as ChatActionRecordingVideoNote;
  }
  return null;
}