FocusBackground constructor
const
FocusBackground({
- Key? key,
- required EdgeInsets padding,
- required bool focused,
- required double height,
- required double width,
Implementation
const FocusBackground({
Key? key,
required EdgeInsets padding,
required bool focused,
required double height,
required double width,
}) : _padding = padding,
_focused = focused,
_height = height,
_width = width,
super(key: key);