AppTitle constructor

const AppTitle({
  1. Key? key,
  2. required String title,
  3. String level = medium,
})

Implementation

const AppTitle({
  super.key,
  required this.title,
  this.level = medium,
});