扑中有消息获取方法吗?

时间:2019-04-13 09:25:30

标签: flutter

我想要列表中的所有消息,但错误是Future类型的值>无法分配给List类型的变量

SmsQuery smsQuery = new SmsQuery();
List<SmsMessage> msg = await smsQuery.getAllSms

1 个答案:

答案 0 :(得分:0)

这应该是正确的语法。

SmsQuery smsQuery = new SmsQuery();

Future<List> getMsg() async {
  List msg = await smsQuery.getAllSms();
  return msg;
}