FillParent constructor

const FillParent({
  1. Key? key,
  2. required Widget child,
  3. double? minWidth,
  4. double? minHeight,
  5. double? maxWidth,
  6. double? maxHeight,
})

Creates a FillParent widget.

Implementation

const FillParent({
  super.key,
  required this.child,
  this.minWidth,
  this.minHeight,
  this.maxWidth,
  this.maxHeight,
});