findServices method

Future<List<String>> findServices()

Find all services in the project

Implementation

Future<List<String>> findServices() async {
  return await _findFilesWithAnnotation('@Service');
}