processInputMapper method

  1. @override
void processInputMapper(
  1. Map<String, String> mapper
)
override

map the request input keys

Implementation

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