x property
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
default:
Implementation
List<String> get x {
try {
if (rawData["x"] is List == false) {
return [];
}
return (rawData["x"] as List).cast<String>();
} catch (e) {
return [];
}
}