File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -151,16 +151,16 @@ Screen? maker___CLASS___(
151
151
if ((_IS_ACCESSIBLE_ONLY_IF_LOGGED_IN_AND_VERIFIED && !isLoggedInAndVerified) || (_IS_ACCESSIBLE_ONLY_IF_LOGGED_IN && !isLoggedIn) || (_IS_ACCESSIBLE_ONLY_IF_LOGGED_OUT && !isLoggedOut)) {
152
152
return null;
153
153
}
154
- if (configuration is ___CONFIGURATION_CLASS___) {
154
+ if (extra is ___CONFIGURATION_CLASS___) {
155
155
return ___CLASS___(
156
156
key: _globalKey,
157
157
extra: extra,
158
158
);
159
159
}
160
160
if (RegExp(r'^(' + _PATH + r')([?/].*)?$')
161
- .hasMatch(Uri.decodeComponent(configuration .path ?? ''))) {
161
+ .hasMatch(Uri.decodeComponent(extra .path ?? ''))) {
162
162
final temp = ___CONFIGURATION_CLASS___.optional(
163
- args: configuration .args,
163
+ args: extra .args,
164
164
);
165
165
return ___CLASS___(
166
166
key: _globalKey,
You can’t perform that action at this time.
0 commit comments