conflict solved

This commit is contained in:
meet2711
2024-06-06 20:02:37 +05:30
parent ce31d3c71e
commit 6d7f8aba43

View File

@@ -157,14 +157,14 @@ final goRouter = GoRouter(
},
),
GoRoute(
name: RouteName.walletDetails,
path: "${RouteName.walletDetails}/:type",
builder: (context, state) {
return WalletDetails(
type: state.pathParameters["type"]!,
);
name: RouteName.walletDetails,
path: "${RouteName.walletDetails}/:type",
builder: (context, state) {
return WalletDetails(
type: state.pathParameters["type"]!,
);
}),
GoRoute(
name: RouteName.contactAdminScreen,
path: RouteName.contactAdminScreen,
builder: (context, state) {
@@ -183,7 +183,6 @@ final goRouter = GoRouter(
path: RouteName.deleteAccountScreen,
builder: (context, state) {
return const DeleteAccountScreen();
},
),
],