CardStyle constructor

const CardStyle({
  1. required double height,
  2. required double width,
  3. required Color activeColor,
  4. required Color inactiveColor,
  5. required double borderRadius,
})

Implementation

const CardStyle({
  required this.height,
  required this.width,
  required this.activeColor,
  required this.inactiveColor,
  required this.borderRadius,
});