getLockedFiles static method

Future<List<FileConfig>> getLockedFiles([
  1. String? lockPath
])

Get files from existing lock file

Implementation

static Future<List<FileConfig>> getLockedFiles([String? lockPath]) async {
  return LockFileService.getLockedFiles(lockPath);
}