'The argument type 'GetDelegate?' can't be assigned to the parameter type 'Key?'

After updating GetX to ^5.0.0-beta.51 Version. i get this issue.

 Scaffold(
        body: Navigator(
          key:Get.nestedKey("1"), // => The argument type 'GetDelegate?' can't be assigned to the parameter type 'Key?'
          initialRoute: Routes.HOME_TAB,
          onGenerateRoute: Get.find<DashBoardController>().onGenerateRoute,
        ),
        bottomNavigationBar: BottomNavBarWidget(),
      ),


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source