toMap method
override
Implementation
Map<String, dynamic> toMap() {
Map<String, dynamic> map = {};
if (_encrypted != null) {
map['encrypted'] = _encrypted;
}
if (_nonce != null) {
map['nonce'] = _nonce;
}
if (_key != null) {
map['key'] = _key;
}
return map;
}