PlexMobileList constructor

const PlexMobileList({
  1. Key? key,
  2. required List<PlexMobileTallyItem> items,
  3. ValueChanged<PlexMobileTallyItem>? onIncrement,
  4. ValueChanged<PlexMobileTallyItem>? onDecrement,
  5. ValueChanged<PlexMobileTallyItem>? onTap,
})

Implementation

const PlexMobileList({
  super.key,
  required this.items,
  this.onIncrement,
  this.onDecrement,
  this.onTap,
});