getJoinedGroupList static method

Future<List<GroupInfoEntity>> getJoinedGroupList()

获取已经加入的群列表(不包括已加入的直播群)

Implementation

static Future<List<GroupInfoEntity>> getJoinedGroupList() async {
  return ListUtil.generateOBJList<GroupInfoEntity>(
      jsonDecode(await (_channel.invokeMethod('getJoinedGroupList'))));
}