yDoCrash function
Implementation
void yDoCrash(dynamic message, {Object? obj}) {
if (!YConfig.catchCrash) return;
yLog("${obj != null ? "\n$obj" : ""}\n$message");
_getPlugin()!.doCrash(message.toString());
}
void yDoCrash(dynamic message, {Object? obj}) {
if (!YConfig.catchCrash) return;
yLog("${obj != null ? "\n$obj" : ""}\n$message");
_getPlugin()!.doCrash(message.toString());
}