fileRef method

String fileRef()

Generate the file reference String to this file.

Implementation

String fileRef() {
  return p.posix
      // ignore: prefer_interpolation_to_compose_strings
      .joinAll([...subDirParts, '$fileName.dart']);
}