isLockUpToDate static method
Check if lock file exists and is up to date
Implementation
static Future<bool> isLockUpToDate({
String? configPath,
String? lockPath,
}) async {
return LockFileService.isLockUpToDate(
configPath: configPath,
lockPath: lockPath,
);
}