FlatCard constructor

const FlatCard({
  1. Key? key,
  2. Widget? child,
  3. double? width,
  4. double? height,
  5. double? borderRadius,
  6. double? borderWidth,
  7. Color? color,
  8. bool clipped = false,
})

Implementation

const FlatCard({
  Key? key,
  this.child,
  this.width,
  this.height,
  this.borderRadius,
  this.borderWidth,
  this.color,
  this.clipped = false,
}) : super(key: key);