InfoTile constructor

const InfoTile({
  1. Key? key,
  2. String? title,
  3. required String content,
  4. Widget? trailing,
  5. List<Widget> subtitle = const [],
  6. int? maxLines = 1,
  7. bool danger = false,
})

Implementation

const InfoTile({
  super.key,
  this.title,
  required this.content,
  this.trailing,
  this.subtitle = const [],
  this.maxLines = 1,
  this.danger = false,
});