fromIterable static method

JsonObject fromIterable(
  1. Iterable<(String, Json)> fields
)

Implementation

static JsonObject fromIterable(Iterable<(String, Json)> fields) =>
    _LinkedHashMapJsonObject(LinkedHashMap.fromIterables(
        fields.map((e) => e.$1), fields.map((e) => e.$2)));