voice_note property

VoiceNote get voice_note

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

VoiceNote get voice_note {
  try {
    if (rawData["voice_note"] is Map == false) {
      return VoiceNote({});
    }
    return VoiceNote(rawData["voice_note"] as Map);
  } catch (e) {
    return VoiceNote({});
  }
}
set voice_note (VoiceNote value)

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

set voice_note(VoiceNote value) {
  rawData["voice_note"] = value.toJson();
}