Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
auto_track_plugin
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
顾海波
2025-02-26 15:52:19 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
960fcc69c14a873840e41e67002ddd456891c4da
960fcc69
1 parent
90bcd5b5
【修复】获取不到宽高
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
lib/auto_track/config/config.dart
lib/auto_track/config/config.dart
View file @
960fcc6
...
...
@@ -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
);
}
}
...
...
Please
register
or
login
to post a comment