getConvert method

String getConvert(
  1. dynamic req
)

Implementation

String getConvert(dynamic req) {
  String temp = this.entry2URL() + '?';
  Map<String, dynamic> map = jsonDecode(jsonEncode(req));
  print('req' + map.toString());

  map.keys.forEach((aKey) {
    if (map[aKey] == null) return;
    temp += aKey + '=' + map[aKey].toString() + '&';
  });
  return temp;
}