TUINavigationRow constructor

const TUINavigationRow({
  1. Key? key,
  2. required String title,
  3. IconData? icon,
  4. Widget? accessoryView,
  5. double? height,
})

Implementation

const TUINavigationRow({
  super.key,
  required this.title,
  this.icon,
  this.accessoryView,
  this.height,
});