recordParameter method

void recordParameter(
  1. List<int> data
)

Implementation

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