ASMenuItem constructor

ASMenuItem(
  1. {dynamic data,
  2. String? name,
  3. Key? key,
  4. String? title,
  5. IconData? icon,
  6. WidgetBuilder? builder,
  7. FilterState filterState(
    1. BuildContext context
    )?}
)

Implementation

ASMenuItem({
  this.data,
  this.name,
  this.key,
  this.title,
  this.icon,
  this.builder,
  this.filterState,
});