import 'dart:typed_data'; class CustomMenu { String menuId; String image; String title; String type; CustomMenu(this.menuId, this.image, this.title, this.type); Map toJson() => {'menuId': menuId, 'image': image, 'title': title, 'type': type}; } abstract class AppletHandler { /// /// 转发小程序 /// /// /// void forwardApplet(Map appletInfo); /// ///获取用户信息 /// "userId" /// "nickName" /// "avatarUrl" /// "jwt" /// "accessToken" /// Future> getUserInfo(); /// 获取自定义菜单 Future> getCustomMenus(String appId); ///自定义菜单点击处理 Future onCustomMenuClick( String appId, String path, String menuId, String appInfo); //打开小程序 Future appletDidOpen(String appId); }