FillCard constructor

const FillCard({
  1. Key? key,
  2. required double height,
  3. required double width,
  4. double radius = 10,
  5. required Color color,
  6. Widget? child,
})

Implementation

const FillCard({
  super.key,
  required this.height,
  required this.width,
  this.radius = 10,
  required this.color,
  this.child,
});