getFullLocalFilePath method

String? getFullLocalFilePath(
  1. String appDir
)

Returns the full local file path of the journal entry.

appDir is the base directory where the app stores its files. If localFilePath is null, returns null.

Implementation

String? getFullLocalFilePath(String appDir) =>
    localFilePath != null ? '$appDir/$localFilePath' : null;