chatActionRecordingVoiceNote property

ChatActionRecordingVoiceNote? chatActionRecordingVoiceNote

The user is recording a voice note

Implementation

ChatActionRecordingVoiceNote? get chatActionRecordingVoiceNote {
  if (this is ChatActionRecordingVoiceNote) {
    return this as ChatActionRecordingVoiceNote;
  }
  return null;
}