RowItem constructor

const RowItem({
  1. Key? key,
  2. required String title1,
  3. required String title2,
  4. FontWeight? title1Weight,
  5. double? title1Size,
  6. Color? title1Color,
  7. FontWeight? title2Weight,
  8. double? title2Size,
  9. Color? title2Color,
})

Implementation

const RowItem({
  super.key,
  required this.title1,
  required this.title2,
  this.title1Weight,
  this.title1Size,
  this.title1Color,
  this.title2Weight,
  this.title2Size,
  this.title2Color,
});