FocusPointerScope constructor

const FocusPointerScope({
  1. Key? key,
  2. FocusNode? focusNode,
  3. required Widget child,
  4. bool? shadow = false,
  5. bool? enabled,
  6. FocusDecoration? decoration,
  7. EdgeInsets? padding,
  8. EdgeInsets? margin,
  9. AlignmentGeometry? alignment,
  10. BoxConstraints? constraints,
  11. VoidCallback? onTap,
  12. VoidCallback? onFocus,
  13. VoidCallback? onUnFocus,
  14. double? width,
  15. double? height,
})

Implementation

const FocusPointerScope({
  Key? key,
  this.focusNode,
  required this.child,
  this.shadow = false,
  this.enabled,
  this.decoration,
  this.padding,
  this.margin,
  this.alignment,
  this.constraints,
  this.onTap,
  this.onFocus,
  this.onUnFocus,
  this.width,
  this.height,
}) : super(key: key);