text property
RichText
get
text
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
RichText get text {
try {
if (rawData["text"] is Map == false) {
return RichText({});
}
return RichText(rawData["text"] as Map);
} catch (e) {
return RichText({});
}
}
set
text
(RichText value)
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
set text(RichText value) {
rawData["text"] = value.toJson();
}