ItemNormalWidget constructor

const ItemNormalWidget({
  1. Key? key,
  2. Widget? leading,
  3. required Widget title,
  4. Widget? subtitle,
  5. Widget? trailing,
  6. EdgeInsetsGeometry? contentPadding,
  7. GestureTapCallback? onTap,
})

Implementation

const ItemNormalWidget({
  Key? key,
  this.leading,
  required this.title,
  this.subtitle,
  this.trailing,
  this.contentPadding,
  this.onTap,
}) : super(key: key);