removeUsedApplet method

Future removeUsedApplet(
  1. String appId
)

清除指定的小程序本体缓存

Implementation

Future removeUsedApplet(String appId) async {
  Map<String, Object> params = {'appId': appId};
  return await _channel.invokeMethod("removeUsedApplet", params);
}