queryMessageList property

Future<List<int>> queryMessageList

Implementation

Future<List<int>> get queryMessageList async {
  String jsonStr = await mConnconst.invokeMethod("queryMessageList");
  List<int> list = jsonStr.split(",").map((e) => int.parse(e)).toList();
  return list;
}