LazyLoadResult.original constructor

LazyLoadResult.original(
  1. String html
)

Creates a LazyLoadResult with the original HTML

Implementation

factory LazyLoadResult.original(String html) {
  return LazyLoadResult(
    html: html,
    lazyLoadingDetected: false,
    scrollCount: 0,
    clickCount: 0,
    totalTimeMs: 0,
  );
}