debugWindowSize method

RxNetConfigBuilder debugWindowSize(
  1. double width,
  2. double height
)

设置调试窗口大小

Implementation

RxNetConfigBuilder debugWindowSize(double width, double height) {
  _debugWindowWidth = width;
  _debugWindowHeight = height;
  return this;
}