FixitDiagnosticsSnapshot constructor

const FixitDiagnosticsSnapshot({
  1. required int viewId,
  2. required String? currentUrl,
  3. required double progress,
  4. required bool isLoading,
  5. required int memoryUsage,
  6. required double fps,
  7. required List<String> errors,
})

Implementation

const FixitDiagnosticsSnapshot({
  required this.viewId,
  required this.currentUrl,
  required this.progress,
  required this.isLoading,
  required this.memoryUsage,
  required this.fps,
  required this.errors,
});