EditorialRow constructor

const EditorialRow({
  1. Key? key,
  2. Widget? leading,
  3. required String title,
  4. String? subtitle,
  5. Widget? trailing,
  6. VoidCallback? onTap,
  7. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(vertical: 14, horizontal: 4),
  8. bool showDivider = true,
  9. bool dense = false,
})

Implementation

const EditorialRow({
  super.key,
  this.leading,
  required this.title,
  this.subtitle,
  this.trailing,
  this.onTap,
  this.padding = const EdgeInsets.symmetric(vertical: 14, horizontal: 4),
  this.showDivider = true,
  this.dense = false,
});