audio property

File get audio

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

Implementation

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

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

Implementation

set audio(File value) {
  rawData["audio"] = value.toJson();
}