TextCell constructor

TextCell({
  1. required String title,
  2. String detail = "",
  3. ValueChanged<ValueChanged<String>>? onTap,
  4. Color? titleColor,
  5. Color? detailColor,
  6. EdgeInsetsGeometry? padding,
  7. bool? hasUneventRows = false,
  8. bool? showIcon = true,
  9. bool boldTitle = false,
  10. double? fontSize,
  11. bool expanded = true,
  12. bool isAsync = false,
})

Implementation

TextCell({
  required this.title,
  this.detail = "",
  this.onTap,
  this.titleColor,
  this.detailColor,
  this.padding,
  this.hasUneventRows = false,
  this.showIcon = true,
  this.boldTitle = false,
  this.fontSize,
  this.expanded = true,
  this.isAsync = false,
});