parsePost method
post parser
Implementation
Future<void> parsePost() async {
if (isForm) {
var maps = await parseForms()?.toList();
var _jsons = {};
maps?.forEach((element) async {
element.forEach((key, value) async {
if (value is Future<String>) {
_jsons[key] = await value;
} else {
_jsons[key] = value;
}
});
});
jsons = _jsons.mergeInto(jsons);
} else if (isXForm) {
await parseXForms();
} else {
await parseJson();
}
await parseUrls();
}