RowText constructor

const RowText({
  1. Key? key,
  2. required void onTap(),
  3. Widget? text1,
  4. Widget? text2,
  5. bool? divider = true,
  6. bool? auto = true,
  7. MainAxisAlignment? mainAxis = MainAxisAlignment.center,
  8. double? paddingHorizontal = 0,
  9. double? paddingVertical = 0,
})

Implementation

const RowText({
  super.key,
  required this.onTap,
  this.text1,
  this.text2,
  this.divider = true,
  this.auto = true,
  this.mainAxis = MainAxisAlignment.center,
  this.paddingHorizontal = 0,
  this.paddingVertical = 0,
});