MagicDropdownButton constructor

const MagicDropdownButton({
  1. Key? key,
  2. required AnimationController? animationController,
  3. required String filterTitle,
  4. String? singleSelection,
  5. Function? onRemoveSelection,
})

Implementation

const MagicDropdownButton(
    {Key? key,
    required this.animationController,
    required this.filterTitle,
    this.singleSelection,
    this.onRemoveSelection})
    : super(key: key);