CupertinoTableViewDelegate constructor

CupertinoTableViewDelegate({
  1. required NumberOfSectionsInTableView numberOfSectionsInTableView,
  2. NumberOfRowsInSection? numberOfRowsInSection,
  3. required WidgetAtIndexPath cellForRowAtIndexPath,
  4. WidgetInSection? headerInSection,
  5. WidgetInSection? footerInSection,
  6. DecorationForSection? decorationForSection,
  7. EdgeInsets? marginForSection,
  8. CanSelectRowAtIndexPath? canSelectRowAtIndexPath,
  9. SelectRowAtIndexPath? didSelectRowAtIndexPath,
  10. HitTestBehavior? hitBehaviorAtIndexPath,
  11. DividerInTableView? dividerInTableView,
  12. double? pressedOpacity,
})

Implementation

CupertinoTableViewDelegate({
  required this.numberOfSectionsInTableView,
  this.numberOfRowsInSection,
  required this.cellForRowAtIndexPath,
  this.headerInSection,
  this.footerInSection,
  this.decorationForSection,
  this.marginForSection,
  this.canSelectRowAtIndexPath,
  this.didSelectRowAtIndexPath,
  this.hitBehaviorAtIndexPath,
  this.dividerInTableView,
  this.pressedOpacity,
});