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