DefaultActionController constructor

const DefaultActionController({
  1. required Widget child,
  2. bool broadcast = true,
  3. Key? key,
})

Implementation

const DefaultActionController({
  required this.child,
  this.broadcast = true,
  Key? key,
}) : super(key: key);