removeAttribute method
Implementation
void removeAttribute(String name) {
doc.sendChanges({
"documentID": doc.id,
"changes": [
{
"nodeID": id,
"removeAttributes": [name],
},
],
});
}
void removeAttribute(String name) {
doc.sendChanges({
"documentID": doc.id,
"changes": [
{
"nodeID": id,
"removeAttributes": [name],
},
],
});
}