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