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