PatrolLogReader constructor

PatrolLogReader({
  1. required DisposeScope scope,
  2. required StreamSubscription<void> listenStdOut(
    1. void onData(
      1. String
      ), {
    2. bool? cancelOnError,
    3. void onDone()?,
    4. Function? onError,
    }),
  3. required void log(
    1. String
    ),
  4. required String reportPath,
  5. required bool showFlutterLogs,
  6. required bool hideTestSteps,
  7. required bool clearTestSteps,
  8. bool hideTestLifecycle = false,
  9. void onLogEntry(
    1. Entry entry
    )?,
})

Implementation

PatrolLogReader({
  required DisposeScope scope,
  required this.listenStdOut,
  required this.log,
  required this.reportPath,
  required this.showFlutterLogs,
  required this.hideTestSteps,
  required this.clearTestSteps,
  this.hideTestLifecycle = false,
  this.onLogEntry,
}) : _scope = scope;