createDestinationFilePath static method

ProjectFilePath createDestinationFilePath(
  1. ProjectFilePath sourceFilePath
)

Implementation

static ProjectFilePath createDestinationFilePath(
    ProjectFilePath sourceFilePath) {
  String wikiFileName = createFileName(sourceFilePath);
  return ProjectFilePath('$destinationDirectoryPath/$wikiFileName',
      isParentPath: true);
}