import 'dart:collection';

class Common {


  static  String toJson( Map<String, String> map ) {
    String rc = "{";
    map.forEach((key, value) {
        rc += "'$key':'$value'";
    });
    rc += "}";
    return rc;
  }

}