checkAll method

Future<List<IssueModel>> checkAll()

Check all Kotlin-related configurations

Implementation

Future<List<IssueModel>> checkAll() async {
  await checkKotlinVersion();
  await checkKotlinExtension();
  return issues;
}