getAllParams method

Map<String, String> getAllParams()

获取所有参数(路径参数 + 查询参数) Returns both path and query parameters in a single map.

Implementation

Map<String, String> getAllParams() {
  return {
    ...?pathParams,
    ...?queryParams,
  };
}