Aitrainer_app 1.1.0
Login and Registraion
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
|
||||
import 'dart:collection';
|
||||
|
||||
class Common {
|
||||
|
||||
|
||||
static String toJson( Map<String, String> map ) {
|
||||
String rc = "{";
|
||||
map.forEach((key, value) {
|
||||
rc += "'$key':'$value'";
|
||||
});
|
||||
rc += "}";
|
||||
return rc;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user