animation property

File get animation

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

Implementation

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

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

Implementation

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