MhStatusViewItemsDef<T> constructor

MhStatusViewItemsDef<T>({
  1. required String text,
  2. required Color color,
  3. double? itemHeight,
  4. required bool showItem(
    1. T item
    ),
  5. required String tooltipText(
    1. T item
    ),
  6. bool onTap(
    1. T item
    )?,
  7. bool displayItems = true,
})

Implementation

MhStatusViewItemsDef(
    {required this.text,
    required this.color,
    this.itemHeight,
    required this.showItem,
    required this.tooltipText,
    this.onTap,
    this.displayItems = true});