TitleSubtitleRow constructor

const TitleSubtitleRow(
  1. String title, {
  2. Key? key,
  3. String navigateTo = "",
  4. String url = "",
  5. String subtitle = "",
  6. double titleFontSize = 16,
  7. double subTitleFontSize = 14,
  8. Color textColor = Colors.white70,
  9. Function? onPressed,
  10. double vPadding = 0,
  11. double hPadding = 10,
  12. bool showDivider = true,
  13. dynamic navigateArguments,
})

Implementation

const TitleSubtitleRow(
  this.title, {
  super.key,
  this.navigateTo = "",
  this.url = "",
  this.subtitle = "",
  this.titleFontSize = 16,
  this.subTitleFontSize = 14,
  this.textColor = Colors.white70,
  this.onPressed,
  this.vPadding = 0,
  this.hPadding = 10,
  this.showDivider = true,
  this.navigateArguments,
});