DropdownItem constructor

const DropdownItem({
  1. required String name,
  2. required String code,
  3. String? type,
  4. String? description,
  5. IconData? textIcon,
  6. String? profileImageUrl,
})

Implementation

const DropdownItem({
  required this.name,
  required this.code,
  this.type,
  this.description,
  this.textIcon,
  this.profileImageUrl,
});