mapInputs method

void mapInputs(
  1. Map<String, String> mapper
)

map request input keys

Implementation

void mapInputs(Map<String, String> mapper) {
  mapper.forEach((String from, String to) {
    if (from != to) {
      dynamic temp = _allRequest[from];
      _allRequest[to] = temp;
      _allRequest.remove(from);
    }
  });
}