RowItem constructor

const RowItem({
  1. Key? key,
  2. required String title,
  3. required String value,
  4. Color? textColor,
  5. FontWeight? fontWeight,
  6. Widget? trailingWidget,
})

Implementation

const RowItem({
  super.key,
  required this.title,
  required this.value,
  this.textColor,
  this.fontWeight,
  this.trailingWidget,
});