convertToJsonList static method

List<Map<String, dynamic>> convertToJsonList(
  1. List<SearchResult> results
)

Implementation

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