FocusBackground constructor

const FocusBackground({
  1. Key? key,
  2. required EdgeInsets padding,
  3. required bool focused,
  4. required double height,
  5. 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);