LogTileWidget constructor

const LogTileWidget({
  1. Key? key,
  2. Widget? prefix,
  3. String? subTitle,
  4. required String title,
  5. Widget? suffix,
  6. Color? titleColor,
  7. VoidCallback? onTap,
})

Implementation

const LogTileWidget({
  super.key,
  this.prefix,
  this.subTitle,
  required this.title,
  this.suffix,
  this.titleColor,
  this.onTap,
});