RowTextWidget constructor

const RowTextWidget({
  1. Key? key,
  2. required String label,
  3. required String value,
  4. Color? labelColor,
  5. Color? valueColor,
  6. double fontSize = 16.0,
  7. FontWeight? labelWeight,
  8. FontWeight? valueWeight,
  9. String? fontFamily,
})

Implementation

const RowTextWidget({
  super.key,
  required this.label,
  required this.value,
  this.labelColor,
  this.valueColor,
  this.fontSize = 16.0,
  this.labelWeight,
  this.valueWeight,
  this.fontFamily,
});