checkAll method

Future<List<IssueModel>> checkAll()

Check all Gradle-related configurations

Implementation

Future<List<IssueModel>> checkAll() async {
  await checkGradleVersion();
  await checkAgpVersion();
  await checkSdkVersions();
  return issues;
}