ModFooter constructor

const ModFooter({
  1. Key? key,
  2. Widget? child,
  3. Color? backgroundColor,
  4. double height = 50.0,
  5. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(horizontal: 24, vertical: 8),
  6. Border? border,
})

Implementation

const ModFooter({
  super.key,
  this.child,
  this.backgroundColor,
  this.height = 50.0,
  this.padding = const EdgeInsets.symmetric(horizontal: 24, vertical: 8),
  this.border,
});