ItemProps constructor

const ItemProps({
  1. required Widget child,
  2. String? href,
  3. bool external = false,
  4. ArcaneStyleData? styles,
  5. String? classes,
})

Implementation

const ItemProps({
  required this.child,
  this.href,
  this.external = false,
  this.styles,
  this.classes,
});