DropDownBlocks constructor

const DropDownBlocks(
  1. {required String title,
  2. required String iconLocation,
  3. required List<Widget> items,
  4. required Color color,
  5. required ValueNotifier<bool> visibility,
  6. Key? key}
)

Implementation

const DropDownBlocks({
  required this.title,
  required this.iconLocation,
  required this.items,
  required this.color,
  required this.visibility,
  super.key,
}) : super(listenable: visibility);