static Iterable<Object?> toSimpleObjs(Iterable<String> jsons) { var jsonDecoder = const JsonDecoder(); return jsons.map((json) => jsonDecoder.convert(json)); }