verifyExistsOrThrow method

void verifyExistsOrThrow()

Implementation

void verifyExistsOrThrow() {
  if (!existsSync()) {
    error("File $name doesn't exist. Expected at location ${absolute.path}");
  }
}