MinSize constructor

const MinSize({
  1. Key? key,
  2. double? minWidth,
  3. double? minHeight,
  4. required Widget child,
})

Implementation

const MinSize({
  Key? key,
  this.minWidth,
  this.minHeight,
  required this.child,
}) : super(key: key);