toJsonList static method

List<Map<String, dynamic>> toJsonList(
  1. Iterable<Normalizable> items, {
  2. bool growable = false,
})

Runs toJson on items.

Implementation

static List<Map<String, dynamic>> toJsonList(
  Iterable<Normalizable> items, {
  bool growable = false,
}) {
  return toJsons(items).toList(growable: growable);
}