TitleElement constructor

const TitleElement({
  1. required String title,
  2. String? subtitle,
  3. Grade? grade,
  4. TitleElementType? type,
  5. String? iconUrl,
  6. bool? iconColorFromEvaluation,
})

Implementation

const TitleElement({
  required this.title,
  this.subtitle,
  this.grade,
  this.type,
  this.iconUrl,
  this.iconColorFromEvaluation,
});