Skip to content

Commit

Permalink
Change initialArguments type
Browse files Browse the repository at this point in the history
  • Loading branch information
raapperez committed Sep 13, 2024
1 parent c98647e commit dc6327a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/nuvigator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class _NuvigatorInner<T extends INuRouter> extends Navigator {
_NuvigatorInner({
required this.router,
required String initialDeepLink,
Map<String, Object>? initialArguments,
Map<String, dynamic>? initialArguments,
Key? key,
List<NavigatorObserver> observers = const [],
this.screenType = materialScreenType,
Expand Down Expand Up @@ -549,7 +549,7 @@ class Nuvigator<T extends INuRouter?> extends StatelessWidget {
final List<ObserverBuilder> inheritableObservers;
final List<NavigatorObserver> observers;
final Key? _innerKey;
final Map<String, Object>? initialArguments;
final Map<String, dynamic>? initialArguments;
final ShouldRebuildFn? shouldRebuild;

/// Maybe fetches a [NuvigatorState] from the current BuildContext.
Expand Down

0 comments on commit dc6327a

Please sign in to comment.