ScreenDebugInfo constructor

const ScreenDebugInfo({
  1. required String screenName,
  2. required String filePath,
  3. required String routeName,
  4. String? extra,
})

Creates screen debug information for NativeLensDebug and NativeLensScreenTrace.

Implementation

const ScreenDebugInfo({
  required this.screenName,
  required this.filePath,
  required this.routeName,
  this.extra,
});