createFile static method

List<String> createFile(
  1. List<String> folders,
  2. String filename, {
  3. required bool underSrc,
})

Implementation

static List<String> createFile(List<String> folders, String filename, { required bool underSrc }) {
  final path = createPath(folders, underSrc: underSrc);
  path.add(filename);
  return path;
}