我正在使用flutter,我正在尝试从我之前设置的shared_preferences中获取一个值,并将其显示在文本小部件中。但我得到Future的实例而不是值(value)。这是我的代码:FuturegetPhone()async{finalSharedPreferencesprefs=awaitSharedPreferences.getInstance();finalStringpatientPhone=prefs.getString('patientPhone').toString();print(patientPhone);returnpatientPhone;}Futurep