PaddedGroup constructor

const PaddedGroup({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets padding = groupPadding,
})

Implementation

const PaddedGroup({
  super.key,
  required this.child,
  this.padding = groupPadding,
});