includeReferenceContentTypeUID method
inherited
This method also includes the content type
UIDs of the referenced entries returned in the response
return EntryQueryable
so you can chain this call
Example:
final stack = contentstack.Stack('apiKey','deliveryToken','environment');
final entry = stack.contentType("contentTypeUid").entry("entryUid");
entry.includeReferenceContentTypeUID();
Implementation
void includeReferenceContentTypeUID() {
parameter['include_reference_content_type_uid'] = 'true';
}