SafaehContentPanel constructor

const SafaehContentPanel({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry padding = const EdgeInsets.all(14),
  4. EdgeInsetsGeometry margin = EdgeInsets.zero,
  5. Decoration? decoration,
})

Implementation

const SafaehContentPanel({
  super.key,
  required this.child,
  this.padding = const EdgeInsets.all(14),
  this.margin = EdgeInsets.zero,
  this.decoration,
});