recordParameter method
Implementation
void recordParameter(List<int> data) {
try {
httpInfo?.request.header = headers.toString();
httpInfo?.request.add(encoding.decode(data));
} catch (e) {
if (kDebugMode) {
print(e);
}
}
}