encodeObjectListJson method

String encodeObjectListJson(
  1. Iterable<O> list
)

Implementation

String encodeObjectListJson(Iterable<O> list) => Json.encode(list.toList(),
    toEncodable: jsonToEncodable, removeNullFields: true);