isLockUpToDate static method

Future<bool> isLockUpToDate({
  1. String? configPath,
  2. String? lockPath,
})

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,
  );
}