ActionButtonWrapper constructor
ActionButtonWrapper({})
Implementation
ActionButtonWrapper({
super.key,
EdgeInsetsGeometry? margin,
double paddingValue = 16.0, // Default value
double? height,
double? width,
required this.child,
}) : _margin = margin ??
EdgeInsets.only(
bottom: 8,
right: paddingValue,
left: paddingValue,
),
_height = height ?? 60,
_width = width ?? double.infinity;