resumeAppHangTracking static method
Resumes the app hang tracking. Only for iOS and macOS
Implementation
static Future<void> resumeAppHangTracking() async {
if (_native == null) {
_logNativeIntegrationNotAvailable("resumeAppHangTracking");
} else {
await _native!.resumeAppHangTracking();
}
}