AnimatedListView constructor

const AnimatedListView({
  1. required List<DropdownValue> allDropdownValues,
  2. required Duration animationDuration,
  3. required Curve animationCurve,
  4. required String queryString,
  5. required Widget listBuilder(
    1. DropdownValue dropdownValue,
    2. int index
    ),
  6. required double expectedDropdownHeight,
  7. required double targetWidth,
  8. required Alignment dropdownAlignment,
  9. required Color borderColor,
  10. required BorderRadius borderRadius,
  11. required double borderThickness,
  12. required List<BoxShadow> boxShadows,
  13. required List<double> listOfTileHeights,
  14. required DropdownScrollbarStyle dropdownScrollbarStyle,
  15. Key? listviewKey,
  16. Key? key,
})

Implementation

const AnimatedListView(
    {required this.allDropdownValues,
    required this.animationDuration,
    required this.animationCurve,
    required this.queryString,
    required this.listBuilder,
    required this.expectedDropdownHeight,
    required this.targetWidth,
    required this.dropdownAlignment,
    required this.borderColor,
    required this.borderRadius,
    required this.borderThickness,
    required this.boxShadows,
    required this.listOfTileHeights,
    required this.dropdownScrollbarStyle,
    this.listviewKey,
    Key? key})
    : super(key: key);