FloatingCard constructor

const FloatingCard({
  1. Key? key,
  2. double? topPosition,
  3. double? leftPosition,
  4. double? rightPosition,
  5. double? bottomPosition,
  6. double? width,
  7. double? height,
  8. BorderRadius borderRadius = BorderRadius.zero,
  9. double elevation = 0.0,
  10. Color? color,
  11. Widget? child,
})

Implementation

const FloatingCard({
  Key? key,
  this.topPosition,
  this.leftPosition,
  this.rightPosition,
  this.bottomPosition,
  this.width,
  this.height,
  this.borderRadius = BorderRadius.zero,
  this.elevation = 0.0,
  this.color,
  this.child,
}) : super(key: key);