DetailRow constructor

const DetailRow({
  1. Key? key,
  2. required String label,
  3. String? value,
  4. bool chip = false,
  5. Color? chipColor,
  6. bool icon = false,
  7. IconData? iconData,
  8. Color? iconColor,
  9. int? maxLines,
})

Implementation

const DetailRow({
  super.key,
  required this.label,
  this.value,
  this.chip = false,
  this.chipColor,
  this.icon = false,
  this.iconData,
  this.iconColor,
  this.maxLines,
});