filename property

String get filename

Return result of getFilename, filename used when saving to Google Drive

Throw if getFilename not set

Implementation

String get filename {
  String debugPrefix = '$runtimeType:get filename';
  if (getLocalContent == null) {
    throw ('$debugPrefix:getFilename not set');
  }
  return getFilename!();
}