isValuesApproved static method

bool isValuesApproved({
  1. String? path,
})

Checks if the approved test cases file exists.

Implementation

static bool isValuesApproved({String? path}) {
  final bool fileExists = File(path ?? _defaultPath).existsSync();
  return fileExists;
}