fullPathFromDir function

String fullPathFromDir({
  1. required String relativePath,
  2. required String directoryPath,
})

Attaches a relativePath to a directoryPath

Implementation

String fullPathFromDir({required String relativePath, required String directoryPath}) => join(
      directoryPath,
      stripBeginningPathSeparatorPath(relativePath),
    );