AppListTitle constructor

const AppListTitle({
  1. Key? key,
  2. String title = '',
  3. String? subtitle,
  4. Widget? trailing,
  5. Widget? icon,
  6. VoidCallback? onPressed,
  7. bool border = false,
  8. TextStyle? titleStyle,
  9. TextStyle? subtitleStyle,
})

Implementation

const AppListTitle({
  Key? key,
  this.title = '',
  this.subtitle,
  this.trailing,
  this.icon,
  this.onPressed,
  this.border = false,
  this.titleStyle,
  this.subtitleStyle,
}) : super(key: key);