setPath method

BuildRequest setPath(
  1. String path
)

Implementation

BuildRequest setPath(String path) {
  if (TextUtil.isEmpty(path)) {
    throw Exception("请求路径不能为空 path:$_path");
  }
  _path = path;
  return this;
}