Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
buenaflor committed Jun 25, 2024
1 parent 1c7dc02 commit ae718d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flutter/lib/src/sentry_flutter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ mixin SentryFlutter {
);
return Future<void>.value();

Check warning on line 248 in flutter/lib/src/sentry_flutter.dart

View check run for this annotation

Codecov / codecov/patch

flutter/lib/src/sentry_flutter.dart#L248

Added line #L248 was not covered by tests
}
return native!.pauseAppHangTracking();
return _native!.pauseAppHangTracking();

Check warning on line 250 in flutter/lib/src/sentry_flutter.dart

View check run for this annotation

Codecov / codecov/patch

flutter/lib/src/sentry_flutter.dart#L250

Added line #L250 was not covered by tests
}

/// Resumes the app hang tracking.
Expand All @@ -261,7 +261,7 @@ mixin SentryFlutter {
);
return Future<void>.value();

Check warning on line 262 in flutter/lib/src/sentry_flutter.dart

View check run for this annotation

Codecov / codecov/patch

flutter/lib/src/sentry_flutter.dart#L262

Added line #L262 was not covered by tests
}
return native!.pauseAppHangTracking();
return _native!.pauseAppHangTracking();

Check warning on line 264 in flutter/lib/src/sentry_flutter.dart

View check run for this annotation

Codecov / codecov/patch

flutter/lib/src/sentry_flutter.dart#L264

Added line #L264 was not covered by tests
}

@internal
Expand Down

0 comments on commit ae718d9

Please sign in to comment.