input_message_audio property
InputMessageAudio
get
input_message_audio
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
InputMessageAudio get input_message_audio {
try {
if (rawData["input_message_audio"] is Map == false) {
return InputMessageAudio({});
}
return InputMessageAudio(rawData["input_message_audio"] as Map);
} catch (e) {
return InputMessageAudio({});
}
}
set
input_message_audio
(InputMessageAudio value)
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
set input_message_audio(InputMessageAudio value) {
rawData["input_message_audio"] = value.toJson();
}