convertPath method

String convertPath(
  1. String filePath
)

Converts the given posix filePath to conform to this provider's path context.

This is a utility method for testing; paths passed in to other methods in this class are never converted automatically.

Implementation

String convertPath(String filePath) =>
    ResourceProviderExtensions(this).convertPath(filePath);