read method
Deserialise this field into the given entity
Implementation
@override
Future<dynamic> read(EntityEventSource src, value) {
if (value == null) {
return Future.value(null);
} else {
return src.ensureResolved(value).then((resolved) {
return doRead(src, resolved);
}).catchError((e) => throw e);
}
}