translation property

List<InputFile> get translation

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

Implementation

List<InputFile> get translation {
  try {
    if (rawData["translation"] is List == false) {
      return [];
    }
    return (rawData["translation"] as List).map((e) => InputFile(e as Map)).toList().cast<InputFile>();
  } catch (e) {
    return [];
  }
}
set translation (List<InputFile> values)

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

Implementation

set translation(List<InputFile> values) {
  rawData["translation"] = values.map((value) => value.toJson()).toList();
}