log_file property

InputFile get log_file

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

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

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

set log_file(InputFile value) {
  rawData["log_file"] = value.toJson();
}