toTransportableFile method
Implementation
@override
TransportableFile toTransportableFile() {
// serialize 'thumbnail'
var img = _thumbnail;
if (img != null && !containsKey('thumbnail')) {
this['thumbnail'] = img.serialize();
}
// clone without other serializations
return super.toTransportableFile();
}