initAndroidCrashReport static method
初始化接口. @param appId appId @param isDebug 是否打开debug开关
Implementation
static Future<void> initAndroidCrashReport({
String? appId,
bool? isDebug,
}) async {
Map<String, Object?> map = {
"appId": appId,
"isDebug": isDebug,
};
_channel.invokeMethod("initCrashReport", map);
}