BubbleLens constructor

const BubbleLens({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. required List<Widget> widgets,
  5. double size = 100,
  6. double paddingX = 10,
  7. double paddingY = 0,
  8. Duration duration = const Duration(milliseconds: 100),
  9. Radius radius = const Radius.circular(999),
  10. double highRatio = 0,
  11. double lowRatio = 0,
})

Implementation

const BubbleLens({
	Key? key,
	required this.width,
	required this.height,
	required this.widgets,
	this.size = 100,
	this.paddingX = 10,
	this.paddingY = 0,
	this.duration = const Duration(milliseconds: 100),
	this.radius = const Radius.circular(999),
	this.highRatio = 0,
	this.lowRatio = 0
}) : super(key: key);