TestDriverStatus constructor

TestDriverStatus({
  1. required Widget child,
  2. bool displayStatus = true,
  3. required Stream<String> statusStream,
  4. Key? key,
})

Implementation

TestDriverStatus({
  required this.child,
  this.displayStatus = true,
  required this.statusStream,
  Key? key,
}) : super(key: key);