|
|
@ -44,8 +44,11 @@ abstract class KdbxNode with Changeable<KdbxNode> { |
|
|
|
// @protected |
|
|
|
// @protected |
|
|
|
// String text(String nodeName) => _opt(nodeName)?.text; |
|
|
|
// String text(String nodeName) => _opt(nodeName)?.text; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// must only be called to save this object. |
|
|
|
|
|
|
|
/// will mark this object as not dirty. |
|
|
|
@mustCallSuper |
|
|
|
@mustCallSuper |
|
|
|
XmlElement toXml() { |
|
|
|
XmlElement toXml() { |
|
|
|
|
|
|
|
_isDirty = false; |
|
|
|
final el = node.copy() as XmlElement; |
|
|
|
final el = node.copy() as XmlElement; |
|
|
|
return el; |
|
|
|
return el; |
|
|
|
} |
|
|
|
} |
|
|
|