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