ZeroCardOutlinedStyle constructor

const ZeroCardOutlinedStyle({
  1. Color? backgroundColor,
  2. BorderRadiusGeometry? borderRadius,
  3. BorderSide? side,
  4. EdgeInsetsGeometry? margin,
  5. 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,
      );