destination_path property

String? get destination_path

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

Implementation

String? get destination_path {
  try {
    if (rawData["destination_path"] is String == false) {
      return null;
    }
    return rawData["destination_path"] as String;
  } catch (e) {
    return null;
  }
}
set destination_path (String? value)

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

Implementation

set destination_path(String? value) {
  rawData["destination_path"] = value;
}