toMap method
Get inner map.
Implementation
@override
MutableMapping toMap() {
// serialize 'snapshot'
var img = _snapshot;
if (img != null && !containsKey('snapshot')) {
this['snapshot'] = img.serialize();
}
// OK
return super.toMap();
}