顾海波

【修复】获取不到宽高

... ... @@ -108,7 +108,8 @@ class AutoTrackConfig {
bool? enableUpload,
bool? enableDrag,
bool? enableIgnoreNullKey,
HttpRequestConfig? httpRequestConfig
HttpRequestConfig? httpRequestConfig,
BuildContext? buildContext
}) {
return AutoTrackConfig(
host: host ?? this.host,
... ... @@ -132,7 +133,8 @@ class AutoTrackConfig {
enableUpload: enableUpload ?? this.enableUpload,
enableDrag: enableDrag ?? this.enableDrag,
enableIgnoreNullKey: enableIgnoreNullKey ?? this.enableIgnoreNullKey,
httpRequestConfig: httpRequestConfig ?? this.httpRequestConfig
httpRequestConfig: httpRequestConfig ?? this.httpRequestConfig,
buildContext : buildContext?? this.buildContext
);
}
}
... ...