document property

File get document

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

Implementation

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

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

Implementation

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