FocusBorder constructor

const FocusBorder({
  1. Key? key,
  2. required Widget child,
  3. bool focused = true,
  4. FocusThemeData? style,
  5. bool? renderOutside,
  6. bool useStackApproach = true,
})

Creates a focus border.

Implementation

const FocusBorder({
  super.key,
  required this.child,
  this.focused = true,
  this.style,
  this.renderOutside,
  this.useStackApproach = true,
});