import 'dart:collection'; class Common { static String toJson( Map map ) { String rc = "{"; map.forEach((key, value) { rc += "'$key':'$value'"; }); rc += "}"; return rc; } }