Skip to content

Commit 5183e99

Browse files
committed
update
1 parent d66a020 commit 5183e99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

templates/v6/bindings.dart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,16 +151,16 @@ Screen? maker___CLASS___(
151151
if ((_IS_ACCESSIBLE_ONLY_IF_LOGGED_IN_AND_VERIFIED && !isLoggedInAndVerified) || (_IS_ACCESSIBLE_ONLY_IF_LOGGED_IN && !isLoggedIn) || (_IS_ACCESSIBLE_ONLY_IF_LOGGED_OUT && !isLoggedOut)) {
152152
return null;
153153
}
154-
if (configuration is ___CONFIGURATION_CLASS___) {
154+
if (extra is ___CONFIGURATION_CLASS___) {
155155
return ___CLASS___(
156156
key: _globalKey,
157157
extra: extra,
158158
);
159159
}
160160
if (RegExp(r'^(' + _PATH + r')([?/].*)?$')
161-
.hasMatch(Uri.decodeComponent(configuration.path ?? ''))) {
161+
.hasMatch(Uri.decodeComponent(extra.path ?? ''))) {
162162
final temp = ___CONFIGURATION_CLASS___.optional(
163-
args: configuration.args,
163+
args: extra.args,
164164
);
165165
return ___CLASS___(
166166
key: _globalKey,

0 commit comments

Comments
 (0)