ZeroCardFilledStyle constructor

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