ModContainer constructor

const ModContainer({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry? padding,
  4. Color? backgroundColor,
  5. double? maxHeight,
})

Implementation

const ModContainer({
  super.key,
  required this.child,
  this.padding,
  this.backgroundColor,
  this.maxHeight,
});