get: ^5.0.0-release-candidate-9.3.2 After using Get.close(result: "x"); in Get.bottomSheet, the result cannot be returned and is null. final result = await Get.bottomSheet( GestureDetector( onTap: (){ Get.close(result: "x"); }, child: Container( color: Colors.red, height: 100, ), ), ); print('result: $result');