SelectSlideItem constructor

SelectSlideItem({
  1. required Map<String, String>? mapList,
  2. required Function onChange,
  3. String text = "items",
  4. String hint = "Please select item",
  5. double fontSize = 16,
  6. double dropdownHeight = 50,
  7. double imageHeight = 300,
  8. Color fontColor = const Color(0xff003087),
  9. Duration duration = const Duration(milliseconds: 800),
  10. Key? key,
})

Implementation

SelectSlideItem(
    {required this.mapList,
    required this.onChange,
    this.text = "items",
    this.hint = "Please select item",
    this.fontSize = 16,
    this.dropdownHeight = 50,
    this.imageHeight = 300,
    this.fontColor = const Color(0xff003087),
    this.duration = const Duration(milliseconds: 800),
    Key? key})
    : super(key: key);