ElasticDialog constructor

const ElasticDialog({
  1. Key? key,
  2. required Widget child,
  3. Offset offset = const Offset(0, -50),
  4. Color backgroundColor = Colors.white,
  5. double radius = 15,
})

Implementation

const ElasticDialog({
  super.key,
  required this.child,
  this.offset = const Offset(0, -50),
  this.backgroundColor = Colors.white,
  this.radius = 15,
});