DraftModeUIInsetCard constructor

const DraftModeUIInsetCard({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry? outerPadding = _defaultOuterPadding,
  4. EdgeInsetsGeometry? innerPadding,
  5. double? borderRadius,
  6. Color? backgroundColor,
  7. Color? borderColor,
  8. List<BoxShadow>? shadow,
  9. VoidCallback? onTap,
})

Implementation

const DraftModeUIInsetCard({
  super.key,
  required this.child,
  this.outerPadding = _defaultOuterPadding,
  this.innerPadding,
  this.borderRadius,
  this.backgroundColor,
  this.borderColor,
  this.shadow,
  this.onTap,
});