findDTOs method

Future<List<String>> findDTOs()

Find all DTOs in the project

Implementation

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