ZeroCardFilledStyle constructor
const
ZeroCardFilledStyle({
- required Color? backgroundColor,
- BorderRadiusGeometry? borderRadius,
- BorderSide? side,
- EdgeInsetsGeometry? margin,
- bool? borderOnForeground,
Implementation
const ZeroCardFilledStyle({
required Color? backgroundColor,
BorderRadiusGeometry? borderRadius,
BorderSide? side,
EdgeInsetsGeometry? margin,
bool? borderOnForeground,
}) : super(
backgroundColor: backgroundColor,
borderRadius: borderRadius,
elevation: 0,
side: side ?? BorderSide.none,
margin: margin,
borderOnForeground: borderOnForeground ?? true,
);