Returns the pubspec.yaml file if it exists.
@override File? getPubspec() { final pubspec = File('${root.path}/pubspec.yaml'); if (pubspec.existsSync()) { return pubspec; } return null; }