RowItem constructor
- Key? key,
- required String title1,
- required String title2,
- FontWeight? title1Weight,
- double? title1Size,
- Color? title1Color,
- FontWeight? title2Weight,
- double? title2Size,
- 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,
});