TileTitleSubTitle constructor Null safety

const TileTitleSubTitle(
  1. {Key? key,
  2. String? title,
  3. String? subtitle,
  4. Color accent = Colors.purple}
)

Implementation

const TileTitleSubTitle(
    {Key? key, this.title, this.subtitle, this.accent = Colors.purple})
    : super(key: key);