FocusScope constructor

FocusScope({
  1. required Widget child,
  2. FocusController? controller,
  3. bool isTrapped = false,
  4. Key? key,
})

Implementation

FocusScope({
  required this.child,
  this.controller,
  this.isTrapped = false,
  super.key,
});