content property
set
content
(dynamic v)
Sets the
Implementation
set content(dynamic v) {
if (v is String) {
stringContent = v;
} else if (v is List<int>) {
data = v;
} else {
jsonContent = v;
}
}