ExtendedInformationTile constructor

const ExtendedInformationTile(
  1. {Key? key,
  2. required String title,
  3. required String extendedTitle,
  4. required String description,
  5. FontWeight titleFontWeight = FontWeight.normal,
  6. FontWeight descriptionFontWeight = FontWeight.normal,
  7. double titleFontSize = 1.75,
  8. double descriptionFontSize = 1.75,
  9. double topPadding = 0.5,
  10. double bottomPadding = 0.5}
)

Implementation

const ExtendedInformationTile({
  Key? key,
  required this.title,
  required this.extendedTitle,
  required this.description,
  this.titleFontWeight = FontWeight.normal,
  this.descriptionFontWeight = FontWeight.normal,
  this.titleFontSize = 1.75,
  this.descriptionFontSize = 1.75,
  this.topPadding = 0.5,
  this.bottomPadding = 0.5,
}) : super(key: key);