content property
String
get
content
Return result of getLocalContent, content to be saved to Google Drive
Throw if getLocalContent not set
Implementation
String get content {
String debugPrefix = '$runtimeType:get content';
if (getLocalContent == null) {
throw ('$debugPrefix:getLocalContent not set');
}
return getLocalContent!();
}