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