RobotDetector constructor

const RobotDetector({
  1. Key? key,
  2. bool debug = false,
  3. required Widget child,
})

Implementation

const RobotDetector({
  Key? key,
  this.debug = false,
  required this.child,
}) : super(key: key);