localSaveTime property

DateTime get localSaveTime

Return result of getLocalSaveTime, last save time of content/data saved locally

Throw if getLocalSaveTime not set

Implementation

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