voice_note property
InputFile
get
voice_note
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
InputFile get voice_note {
try {
if (rawData["voice_note"] is Map == false) {
return InputFile({});
}
return InputFile(rawData["voice_note"] as Map);
} catch (e) {
return InputFile({});
}
}
set
voice_note
(InputFile value)
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
set voice_note(InputFile value) {
rawData["voice_note"] = value.toJson();
}