translation property
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 [];
}
}