workouttest_app/lib/util/common.dart
Bossanyi Tibor c8f0ced24d Aitrainer_app 1.1.0
Login and Registraion
2020-06-12 21:34:15 +02:00

16 lines
227 B
Dart

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