pathFullName function

String pathFullName(
  1. String path
)

Returns full path of a path

Implementation

String pathFullName(String path) {
  return pathExpand(path);
  //return path_path.normalize(path_path.absolute(path)).replaceAll(r'\', '/');
}