FastRowView constructor

FastRowView({
  1. required String title,
  2. bool hiddenRightArrow = false,
  3. Widget? trail,
  4. Widget? left,
  5. Widget? prefix,
  6. BuildContext? context,
  7. VoidCallback? onTap,
  8. double height = 60.0,
  9. EdgeInsets margin = EdgeInsets.zero,
  10. bool hiddenDivider = false,
  11. EdgeInsets padding = const EdgeInsets.only(left: 15, right: 10.0),
  12. TextStyle? style,
})

Implementation

FastRowView({
  required this.title,
  this.hiddenRightArrow = false,
  this.trail,
  this.left,
  this.prefix,
  this.context,
  this.onTap,
  this.height = 60.0,
  this.margin = EdgeInsets.zero,
  this.hiddenDivider = false,
  this.padding = const EdgeInsets.only(left: 15, right: 10.0),
  this.style,
});