NativeLensScreenTrace constructor

const NativeLensScreenTrace({
  1. Key? key,
  2. required String screenName,
  3. required String filePath,
  4. required String routeName,
  5. String? extra,
  6. required Widget child,
})

Creates a screen trace wrapper for debug builds.

Implementation

const NativeLensScreenTrace({
  super.key,
  required this.screenName,
  required this.filePath,
  required this.routeName,
  this.extra,
  required this.child,
});