TileTitle constructor Null safety

const TileTitle(
  1. {Key? key,
  2. String? title,
  3. Color accent = Colors.blue}
)

Implementation

const TileTitle({Key? key, this.title, this.accent = Colors.blue})
    : super(key: key);