ViewCell constructor

ViewCell({
  1. required Widget child,
  2. bool isAsync = false,
  3. bool? hasUneventRows = false,
  4. EdgeInsetsGeometry? padding,
  5. Widget? detail,
  6. void onTap()?,
  7. bool? showIcon,
  8. Color? iconColor,
  9. IconData? icon,
  10. bool enableSelection = true,
  11. bool expanded = true,
})

Implementation

ViewCell({
  required this.child,
  this.isAsync = false,
  this.hasUneventRows = false,
  this.padding,
  this.detail,
  this.onTap,
  this.showIcon,
  this.iconColor,
  this.icon,
  this.enableSelection = true,
  this.expanded = true,
});