convertToJsonList static method
Implementation
static List<Map<String, dynamic>> convertToJsonList(
List<SearchResult> results) {
return results.map((r) => r.toJson()).toList();
}
static List<Map<String, dynamic>> convertToJsonList(
List<SearchResult> results) {
return results.map((r) => r.toJson()).toList();
}