DropDownView constructor

const DropDownView({
  1. Key? key,
  2. required DropDownController controller,
  3. required List<DropDownViewProperty> builders,
  4. Color? viewColor = Colors.white,
  5. Color? maskColor,
  6. Duration animationDuration = const Duration(milliseconds: 150),
  7. double offsetY = 0,
})

Implementation

const DropDownView({
  super.key,
  required this.controller,
  required this.builders,
  this.viewColor = Colors.white,
  this.maskColor,
  this.animationDuration = const Duration(milliseconds: 150),
  this.offsetY = 0,
});