ArcaneNavDropdown constructor

const ArcaneNavDropdown({
  1. required String label,
  2. required String width,
  3. required Widget content,
  4. bool alignRight = false,
  5. Key? key,
})

Implementation

const ArcaneNavDropdown({
  required this.label,
  required this.width,
  required this.content,
  this.alignRight = false,
  super.key,
});